print "Enter a number: "; chomp(my $num1 = ); print "Enter another number: "; chomp(my $num2 = ); print "$num1 + $num2 is ", $num1 + $num2, "\n";