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)