1901: 拐角矩阵2

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:123 Solved:3

Description

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

Input

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

Output

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

Sample Input Copy

5

Sample Output Copy

  5 4 3 2 1
  4 4 3 2 1
  3 3 3 2 1
  2 2 2 2 1
  1 1 1 1 1

Source/Category