print "Would You like to Add Two numbers? y/n \n"; chomp($add = ); if ($add = "y") { print "OK, press enter to continue \n"; chomp($nothing = ); print "Enter Your First Number \n"; chomp($first = ); print "Enter Your Second Number \n"; chomp($second = ); $result = $first + $second; print "$first + $second = $result.\n"; chomp($end = ) } else { print "Would You Like to Multiply Two Numbers? y/n \n"; chomp($mult = ); if ($mult = "y") { print "Enter Your First Number \n"; chomp($firstm = ); print "Enter Your Second Number \n"; chomp($secondm = ); $result = $firstm * $secondm; print "$firstm * $secondm = $result.\n"; chomp($end2 = ) } else { print "cool"; } chomp($jjf = ); }