def iq(a,b):
if(a==0):
return b
else:
return iq(a-1,a+b)
print(iq(3,6)) 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) x = 2
if x < 5:
print(x)
else:
pass