#OLD236. 循环练习F

循环练习F

Description

输入 n,求 n!,定义n! = 1 * 2 * .... * ( n - 1) * n, (n<20)。

Format

Input

输入n。

Output

求n!。

Samples

6
720

Hint