Question: 2
What does the following Python program print?

x = "I am"
y = 6
z = "feet tall"

print(x)
print(y)
print(z)


I am 6 feet tall


I am6feet tall


I am
6
feet tall


x
y