val a = 3val b = 5val c = 7 if (c >= a && c >= b) { println("nothing is larger than C.")}if (!(a >= b || a >= c)) { println("A is the smallest")}