Problem
Write a program have input 2 integers. Outputs the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. Example: If the input is: -15 10 oWrite a program that takes two integers as input. Outputs the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. Example: If the input is: -15 10 the output is: -15 -10 -5 0 5 10 Example: If the second integer is less than the first as in: 20 5 the output is: Integer the second must not be less than the first. For simple encoding, output a space after each integer, including the last one.