#The elif keyword is Python's way of saying "if the previous conditions were not true, then try this condition".
a = 33
b = 15
if b > a:
print("b is greater than a")
elif a == b:
print("a and b are equal")
elif b < a:
print (" a less than b")