Problem A

Statement
Copy Copied
Description:
Hexagonal numbers are figurate numbers which can be calculated using the formula hn = 2n2 - n. You are given n; calculate n-th hexagonal number.

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

Output Format:
Output the n-th hexagonal number.

Note:
None