Functions with loops.

Define a function PrintValue() that takes two integer parameters and outputs the product of all odd integers starting with the first and ending with the second parameter. End with a newline. The function does not return any value.

Ex: If the input is -5 -1, then the output is:

-15

Note: Odd numbers are not divisible by 2.

#include

using namespace std;

/* Your code goes here */

int main() {

int number1;

int number2;

cin >> number1;

cin >> number2;

PrintValue(number1, number2);

return 0;

}