Problem
Write a script that will ask the user for three numbers between 1 and 20, each number provided by the user must be larger than the previous number. Your script should do checking to make sure the user is following the rules when providing these numbers. Keep asking until they provide proper numbers. Once three valid numbers are provided (for example, 5, 12, 19) use the break statement to display a count starting at the first number and stop when you reach the second number (for example you will count from 5 to 12). Now use the continue statement to display a count from the first number to the third number but skipping the second number (for example count from 5-19 and skip 12.)