csc-python-solutions/07/c/2 - One Triangle.py
2021-02-18 19:02:07 +01:00

4 lines
57 B
Python

n=int(input())
for i in range(n, 0, -1):
print("1"*i)