Problem2189--阶乘

2189: 阶乘

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 148  Solved: 60
[Status] [Submit] [Creator:]

Description

输入一个整数 n(1 ≤ n ≤ 20),输出 n!。

”n!” 表示 1 × 2 × …… × n,读作 ”n的阶乘”。

Input

一个整数 n(1 ≤ n ≤ 20)。

Output

输出一个整数,表示 n!。

Sample Input Copy

5

Sample Output Copy

120

Source/Category

 python