Preparando MOJI
Hexagonal numbers are figurate numbers which can be calculated using the formula hn = 2n2 - n. You are given n; calculate n-th hexagonal number.
The only line of input contains an integer n (1 ≤ n ≤ 100).
Output the n-th hexagonal number.
2
6
5
45