CF711B Chris and Magic Square
Description
ZS the Coder and Chris the Baboon arrived at the entrance of Udayland. There is a $ n×n $ magic grid on the entrance which is filled with integers. Chris noticed that exactly one of the cells in the grid is empty, and to enter Udayland, they need to fill a positive integer into the empty cell.
Chris tried filling in random numbers but it didn't work. ZS the Coder realizes that they need to fill in a positive integer such that the numbers in the grid form a magic square. This means that he has to fill in a positive integer so that the sum of the numbers in each row of the grid (), each column of the grid (), and the two long diagonals of the grid (the main diagonal —  and the secondary diagonal — ) are equal.
Chris doesn't know what number to fill in. Can you help Chris find the correct positive integer to fill in or determine that it is impossible?
Input Format
The first line of the input contains a single integer $ n $ ( $ 1
Output Format
Output a single integer, the positive integer $ x $ ( $ 1
Explanation/Hint
In the first sample case, we can fill in $ 9 $ into the empty cell to make the resulting grid a magic square. Indeed,
The sum of numbers in each row is:
$ 4+9+2=3+5+7=8+1+6=15 $ .
The sum of numbers in each column is:
$ 4+3+8=9+5+1=2+7+6=15 $ .
The sum of numbers in the two diagonals is:
$ 4+5+6=2+5+8=15 $ .
In the third sample case, it is impossible to fill a number in the empty square such that the resulting grid is a magic square.