


Write a program to find the factorial of a number.
Factorial of n is:
n! = n * (n-1) * (n-2) * (n-3)....* 1
Output the factorial of 'n'. If it does not exist, output 'Error'.
The only line of input contains a single integer.
Output format :
The only line of output prints the Factorial of the number or "Error" if it doesn't exist.
-10 <= n <= 12
5
120
5!=5*4*3*2*1=120
0
1
Its a fact that 0!=1
-2
Error
It's a fact that we can't find the factorial of a negative number.