a=1
b=0
if a and b:
print("AND")
elif a==0:
print("a=0")
elif b==1:
print("b=1")
elif not a:
print("not a")
else:
print("OR")