Help for this page
if ($in > $numb) { print "Too high! "; }else{ print "Too low! "; }
print 'Too ', ($in > $numb) ? 'high!' : 'low!';