i = True
j = False

print i and j
print i or j
print not i

i = 1.5
j = 0

print (i and j)
print (i or j)
print bool(i or j)
print not not(i or j)
print not i
