5704: 回形矩阵2

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:35 Solved:1

Description

 输入n,试打印输出n行n列的 回形矩阵(每个元素占4位场宽)。

Input

第一行为一个整数n(1≤n≤20), 

Output

n行,代表一个回形矩阵。

Sample Input Copy

7

Sample Output Copy

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