#P1208C. Magic Grid
Magic Grid
No submission language available for this problem.
Description
Let us define a magic grid to be a square matrix of integers of size , satisfying the following conditions.
- All integers from to inclusive appear in the matrix exactly once.
- Bitwise XOR of all elements in a row or a column must be the same for each row and column.
You are given an integer which is a multiple of . Construct a magic grid of size .
The only line of input contains an integer (). It is guaranteed that is a multiple of .
Print a magic grid, i.e. lines, the -th of which contains space-separated integers, representing the -th row of the grid.
If there are multiple answers, print any. We can show that an answer always exists.
Input
The only line of input contains an integer (). It is guaranteed that is a multiple of .
Output
Print a magic grid, i.e. lines, the -th of which contains space-separated integers, representing the -th row of the grid.
If there are multiple answers, print any. We can show that an answer always exists.
Samples
Note
In the first example, XOR of each row and each column is .
In the second example, XOR of each row and each column is .