Problem1225--图形打印之数字金字塔

1225: 图形打印之数字金字塔

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

Description

输入一个整数,输出由该数字组成的金字塔。

Input

一个整数n

Output

一个n行的数字组成的金字塔

Sample Input Copy

15

Sample Output Copy

              1
             222
            33333
           4444444
          555555555
         66666666666
        7777777777777
       888888888888888
      99999999999999999
     0000000000000000000
    111111111111111111111
   22222222222222222222222
  3333333333333333333333333
 444444444444444444444444444
55555555555555555555555555555

HINT

【数据规模】
1<=n<=37

Source/Category