# Monta eri ehtoa:
a = False
b = True
if a:
    print("a")
elif b:
    print("b")
else:
    print(False)