1202: 数字三角形(书本例题)
[Creator : ]
Description
输入一个正整数 n,输出 n 行的数字三角形。其中,第 1 行为数字 1,第 2 行为数字 23,第 3行为数字 456,第 4 行为数字 7890,第 5 行为数字 12345,…
Input
一行一个正整数 n,1≤n≤100。
Output
n 行的数字三角形。
Sample Input Copy
5
Sample Output Copy
1
23
456
7890
12345