Sum of Squares

Problem Statement

Given a natural number n, calculate the sum:

1² + 2² + … + n²

Input

A single natural number n (1 ≤ n ≤ 100).

Output

Print the computed sum.

Example

input output
2 5