Write a program that prints the product of all integer numbers from a to b (a < b).
Include a and exclude b from the product.
For example, if a=2 and b=5, then the answer is 2*3*4=24.
Write a program that prints the product of all integer numbers from a to b (a < b).
Include a and exclude b from the product.
For example, if a=2 and b=5, then the answer is 2*3*4=24.
Sample Input 1:
1 2Sample Output 1:
1Sample Input 2:
6 14Sample Output 2:
51891840Create a free account to access the full topic