Python - Nested Conditional
================
x=111
y=222
if x == y:
print(x, “and”, y, “are equal”)
else:
if x < y:
print(x, "is less than", y)
print(x, "is greater than", y)