✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
x=1
y=2
if x == y:
print (x, "and", y, "are equal")
else:
if x < y:
print (x, "is less than", y)
else:
print (x, "is greater than", y)