m = True
n = False
print(m or n) m = True
n = False
print(not m) m = True
n = False
print('not n') m = 7 * 5 + 8
print(m) m = 9 * (3 + 12)
print(m)