4 lines
57 B
Python
4 lines
57 B
Python
|
n=int(input())
|
||
|
for i in range(n, 0, -1):
|
||
|
print("1"*i)
|