Problem9446--数字走向3

9446: 数字走向3

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

输入整数N,输出相应方阵。

Input

一个整数N。( 0 < n < 10 )

Output

一个方阵,每个数字的场宽为3。

Sample 1 Input

5

Sample 1 Output

  1  6 11 16 21
  2  7 12 17 22
  3  8 13 18 23
  4  9 14 19 24
  5 10 15 20 25

Source/Category

1.6.二维数组