Help for this page
print $greeting; chomp($operator = <STDIN>); #your other prints and stuff here $c = $a - $b if $operator eq "-"; $c = $a * $b if $operator eq "*";
if ($operator eq "-") { ... } else { $c = $a * $b; }