300993: CF188A. Hexagonal Numbers
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
A. Hexagonal Numberstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output
Hexagonal numbers are figurate numbers which can be calculated using the formula hn = 2n2 - n. You are given n; calculate n-th hexagonal number.
InputThe only line of input contains an integer n (1 ≤ n ≤ 100).
OutputOutput the n-th hexagonal number.
ExamplesInput3Output
15Input
6Output
66