2214: 求阶乘的和

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:4 Solved:4

Description

给定正整数n,求不大于n的正整数的阶乘的和(即求1!+2!+3!+...+n!)

Input

输入有一行,包含一个正整数n(1 < n < 12)。

Output

输出有一行:阶乘的和。

Sample Input

5

Sample Output

153