#P1208C. Magic Grid

    ID: 4911 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithms*1800

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 n×nn \times n, satisfying the following conditions.

  • All integers from 00 to (n21)(n^2 - 1) 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 nn which is a multiple of 44. Construct a magic grid of size n×nn \times n.

The only line of input contains an integer nn (4n10004 \leq n \leq 1000). It is guaranteed that nn is a multiple of 44.

Print a magic grid, i.e. nn lines, the ii-th of which contains nn space-separated integers, representing the ii-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 nn (4n10004 \leq n \leq 1000). It is guaranteed that nn is a multiple of 44.

Output

Print a magic grid, i.e. nn lines, the ii-th of which contains nn space-separated integers, representing the ii-th row of the grid.

If there are multiple answers, print any. We can show that an answer always exists.

Samples

Sample Input 1

4

Sample Output 1

8 9 1 13
3 12 7 5
0 2 4 11
6 10 15 14

Sample Input 2

8

Sample Output 2

19 55 11 39 32 36 4 52
51 7 35 31 12 48 28 20
43 23 59 15 0 8 16 44
3 47 27 63 24 40 60 56
34 38 6 54 17 53 9 37
14 50 30 22 49 5 33 29
2 10 18 46 41 21 57 13
26 42 62 58 1 45 25 61

Note

In the first example, XOR of each row and each column is 1313.

In the second example, XOR of each row and each column is 6060.