Problem A: 【入门】求1!+2!+...+N!

Memory Limit:16 MB Time Limit:1.000 S
Creator:
Submit:59 Solved:45

Description

N!=1*2*...*N;
例5!=1*2*3*4*5=120.
编程求1!+2!+3!+...+N!.

Input

输入一行,只有一个整数n (1<=n<=10) 

Output

输出只有一行(这意味着末尾有一个回车符号),包括1个整数。

Sample Input

3

Sample Output

9