Define a function print_values() that takes two parameters and outputs all integers starting with the first parameter and ending with the second on one line separated and ending with a space. The function does not return any value. Ex: If the input is: 2 6 then the output is: Testing static input: 2 3 4 Testing user input: 2 3 4 5 6 Note: Assume the first parameter is less than the second. Use the following Python code: ''' Your code goes here ''' number1 = int(input()) number2 = int(input()) print('Testing static input: ') print_values(2, 4) print(f'\nTesting user input: ') print_values(number1, number2)