let A = 3let B = 5let C = 7if (C >= A && C >= B) { print("nothing is larger than C")}if (!(A >= B || A >= C)) { print("A is the smallest")}