x = 2
if x < 5:
print(x)
else:
pass 3*1**3 i=0
while i < 3:
print(i)
i+=1
else:
print(0) a = True
b = False
c = False
if not a or b:
print(1)
elif not a or not b and c:
print (2)
elif not a or b or not b and a:
print (3)
else:
print (4)