Problem1335--求N!的值 例题P210

1335: 求N!的值 例题P210

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

Description

    用递归算法,求N!的精确值(N以一般整数输入)。


Input

一个整数N。

Output

N!的值。

Sample Input Copy

10   

Sample Output Copy

10!=3628800

HINT

N<=12。

Source/Category

递归