print $greeting; chomp($operator = ); #your other prints and stuff here $c = $a - $b if $operator eq "-"; $c = $a * $b if $operator eq "*"; #### if ($operator eq "-") { $c = $a - $b; } else { $c = $a * $b; }