jgunt6941 jgunt6941 15-02-2024 Mathematics contestada Which of the following correctly prints the values of x and y?a. print(x + ':' + y)b. print(str(x) + ':' + str(y))c. print(x, y)d. print(str(x), str(y))e. print(x + y)