eolymp
bolt
Try our new interface for solving problems
Problems

Magic square

Magic square

Time limit 1 second
Memory limit 64 MiB

Magic square - a square table, filled n^2 numbers so that the sum of the numbers in each row, each column and both diagonals of the same. Sum of the numbers in each row, column and diagonal, is called the magic constant. Check or specify the square is magical.

Input data

The first line contains the number n (1n100). Next is the n rows of n numbers each. All of the square - the natural numbers not exceeding 32000.

Output data

If the specified array is magic - the magic of its output constant, otherwise the output -1.

Examples

Input example #1
3
2 7 6
9 5 1
4 3 8
Output example #1
15