CF552A Vanya and Table

Description

Vanya has a table consisting of $ 100 $ rows, each row contains $ 100 $ cells. The rows are numbered by integers from $ 1 $ to $ 100 $ from bottom to top, the columns are numbered from $ 1 $ to $ 100 $ from left to right. In this table, Vanya chose $ n $ rectangles with sides that go along borders of squares (some rectangles probably occur multiple times). After that for each cell of the table he counted the number of rectangles it belongs to and wrote this number into it. Now he wants to find the sum of values in all cells of the table and as the table is too large, he asks you to help him find the result.

Input Format

The first line contains integer $ n $ ( $ 1

Output Format

In a single line print the sum of all values in the cells of the table.

Explanation/Hint

Note to the first sample test: Values of the table in the first three rows and columns will be as follows: $ 121 $ $ 121 $ $ 110 $ So, the sum of values will be equal to $ 10 $ . Note to the second sample test: Values of the table in the first three rows and columns will be as follows: $ 222 $ $ 222 $ $ 222 $ So, the sum of values will be equal to $ 18 $ .