1266: 【基础】求1!+2!+3!+4!+...+n!

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:3 Solved:3

Description

请求出1!+2!+3!+4!+...+n!,请注意,n<=50。

n!=n*(n-1)*(n-2)*...*1,如:5!=5*4*3*2*1=120。

Input

请输入一个整数n(n<=50)

Output

输出求和的结果

Sample Input Copy

10

Sample Output Copy

4037913