Preparando MOJI
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.
2
5
5
35