Control flow / Conditional statements / if/else statements

A = 3
B = 5
C = 7
if C >= A and C >= B:
    print("nothing is larger than C")

if not (A >= B or A >= C):
    print("A is the smallest")