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