# operators
#  - boolean values: True, False
#  - not (negates)
#  - and (both conditions must be true)
#  - or (at least one condition must be true)
#  - <, >, <=, >=, ==, !=

if True:
    print("This prints if expression evaluates to True")
else:
    print("This prints if expression evaluates to False")

x = 3
y = 5
if x==2 or y==6:
    print("x is 2")
    print("more code")
elif x==2:
    print("x is 2 again")
elif x==4:
    print("x is 4")
#else:
#    print("x is not 2")
#    print("even more code")

print("hello students")


x = 2
y = 5
# if (x == 2): # True if the value of x IS 2
#if x!=2: # True if the value of x IS NOT 2
if (not (x == 2)):
    print("A")
    if y==5:
        print("A1")
    else:
        print("A2")
elif y==5:
    print("B")
    if (x>5):
        print("B1")
    else:
        print("B2")
else:
    print("C")