Problem1122--1!到n!的和

1122: 1!到n!的和

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 16  Solved: 12
[Submit] [Status] [Web Board] [Creator:]

Description

求1!+2!+3!+4!+...+n!的结果。

不用要高精度计算的,n不会很大的

1! = 1 

2! = 1*2 = 2

3! = 1*2*3 = 6

4! = 1*2*3*4 = 24 

5! = 1*2*3*4*5 = 120

6! = 1*2*3*4*5*6 = 720

1! + 2! + 3! + 4! + 5! + 6! = 873

Input

输入数据含有不多于50个的正整数n(1≤n≤12)。

Output

对于每个n,输出计算结果。每个计算结果应占独立一行。

Sample Input

2 3 6

Sample Output

3
9
873

Source/Category