Problem A: 数字矩形

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:16 Solved:14

Description

从键盘读入一个整数 n,输出如下图形 如:n=3

 ,输出

111
222
333

如:n=5,输出

11111
22222
33333
44444
55555

Input

一个整数 n (n<10 )

Output

输出 n行的图形。

Sample Input Copy

3

Sample Output Copy

111
222
333