控制流 / 条件语句 / if/else 语句

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")