Problem1573--阶乘问题(1)

1573: 阶乘问题(1)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

对于给定的整数n,输出n的阶乘 n!=1*2*3*4*5*······*(n-1)*n
1<=n<=10

Input

输入一个整数

Output

输出一行:一个整数

Sample Input Copy

10

Sample Output Copy

3628800

HINT

样例解释 10的阶乘=1*2*3*4*5*6*7*8*9*10=3628800

Source/Category