Create a function named factorial.
The function must receive an integer n and return the factorial of that number.
The factorial of 0 is 1.
int factorial(int n)
An integer.
The factorial of the number.
Input:
5
Output:
120
Input:
0
Output:
1