http://www.perlmonks.org?node_id=1013961

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

 $a1=2; $b1=10; (defined($a1 > $b1)) ? ($int = ($a1/$b1)) : ($int = ($b1/$a1)); print $int;

wats wrong with this code?