if True and False:
print('True')
print('More lines')
else:
print('False')
if True or False:
print('True')
else:
print('False')
w = 1
x = 1
y = 3
z = 2
# if x == y
# if x = y This is wrong
# if x < y
# if x <= w
# if y != z
# if not True and not False
# True != true