use strict; use warnings; use diagnostics; use Data::Dumper; #### my $num1=$ARGV[0]; my $num2=$ARGV[1]; #### # 1 # Ask the user for two numbers # 2 # while the first number is less than the second; # add 1 to the first number # then print out the second #^# THAT'S THE CONDITION YOU WANT #^# #3 #v# NOW DESCRIBE WHAT CAN GO WRONG AND WHAT TO DO ABOUT IT #v# # if the user enters less than two numbers # say to the user: "you didn't give me two numbers" # if the user enters more than two numbers # say to the user: "you gave me too many numbers