1148: 阶乘和

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:28 Solved:16

Description

已知正整数 N(N<=100)设 S=1!+2!+3!+...N!。其中"!"表示阶乘即 N!=1*2*3*……*(N-1)*N, 如:3!=1*2*3=6。

请编程实现:输入正整数 N输出计算结果 S 的值。 

Input

输入正整数 N的值

Output

输出计算结果 S 的值

Sample Input Copy

4 

Sample Output Copy

33