define the function outputvals() that takes two integer parameters and outputs all integers starting with the first and ending with the second parameter, each followed by a newline. the function does not return any value. ex: if the input is 1 5, then the output is: 1 2 3 4 5