CSES - Multiplication Table
  • Time limit: 1.00 s
  • Memory limit: 512 MB

Find the middle element when the numbers in an n×nn \times n multiplication table are sorted in increasing order. It is assumed that nn is odd.

For example, the 3×33 \times 3 multiplication table is as follows: 123246369 \begin{matrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 3 & 6 & 9 \\ \end{matrix} The numbers in increasing order are [1,2,2,3,3,4,6,6,9][1,2,2,3,3,4,6,6,9], so the answer is 33.

Input

The only input line has an integer nn.

Output

Print one integer: the answer to the task.

Constraints

  • 1n<1061 \le n < 10^6

Example

Input:

3

Output:

3