Problem Description
Given a number A. Find the fatorial of the number.
1 <= A <= 100
First and only argument is the integer A.
Return a string, the factorial of A.
Input 1:
A = 2
Input 2:
A = 3
Output 1:
2
Output 2:
6
Explanation 1:
2! = 2 .
Explanation 2:
3! = 6 .
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.