- Check if all the variables are negative . Else print "The numbers should be negative"
- Check that the first parameter is smaller than the second parameter .
- Using a loop Print all the numbers bettween the smaller int up to the bigger int .
Note : Ask the user for the 2 numbers . (use input)
Example : when we call the function with parameter1 = -15 , and parameter2 = -4 , the printed output should look like this:
-15.
-14.
-13.
-12.
-11.
-10.
-9.
-8.
-7.
-6.
-5.
-4.