<?php$A = 3;$B = 5;$C = 7;if ($C >= $A && $C >= $B) { echo "nothing is larger than C", "\n";}if (!($A >= $B || $A >= $C)) { echo "A is the smallest";}