a = 50
b = 5
if a < b:
    print("a is less than b")
if a > b:
    print("a is greater than b")
print("done")