#P162A. Pentagonal numbers

    普及- ID: 8058 远端评测题 3000ms 256MiB 尝试: 0 已通过: 0 难度: 3 上传者: 标签>*special problemimplementation*1100

Pentagonal numbers

Description

Pentagonal numbers are figurate numbers which can be calculated using the formula pn = (3n2 - n) / 2 (always integer). You are given n; calculate n-th pentagonal number.

The only line of input contains an integer n (1 ≤ n ≤ 100).

Output the n-th pentagonal number.

Input

The only line of input contains an integer n (1 ≤ n ≤ 100).

Output

Output the n-th pentagonal number.

2

5

5

35