Write a C++ program which calls a factorial function to calculate N!. N! is the product of all whole numbers from 1 to N. For example, the factorial of 5! is 1 * 2 * 3 * 4 * 5 = 120. Your main program will ask the user to provide N and display the result of N!.