#809. 数学公式计算累加和2(函数)

数学公式计算累加和2(函数)

Description

设计一个程序,输入一个值,可以计算
式子1*2*4*5+2*3*5*6+...+x*(x+1)*(x+3)*(x+4)

Input Format

x(x为>=1的整数且<=1000)

Output Format

式子1*2*4*5+2*3*5*6+...+x*(x+1)*(x+3)*(x+4)计算结果
3
724

Source

四学阶