1471: 函数输出数字斜塔

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:18 Solved:7

Description

输入一个n。输出高度为n的数字斜塔,并且第一层为1,第二层为12,第三层为123.第四层为1234....以此类推

Input

数字n

Output

n层的数字斜塔

Sample Input Copy

3

Sample Output Copy

1
1 2
1 2 3