Problem T: 数列求值5

Problem T: 数列求值5

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入 $1$ 个正整数 $n$,计算 $1+(1+2)+(1+2+3)+ \cdots +(1+2+3+ \cdots +n)$。

Input

输入一个整数 $n\ (0 \leq n \leq 20)$

Output

输出一个整数

Sample 1 Input

4

Sample 1 Output

20

Sample 2 Input

19

Sample 2 Output

1330

Sample 3 Input

0

Sample 3 Output

0