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