#P1261. 求N!的值

求N!的值

Description

n!=1*2*3*4...*n

特别的 0!=1

Input Format

输入整数N<=15

Output Format

按样例格式输出答案
10
10!=3628800

Hint

用64位整型(long long)

Source

递归