Create 2 - One Triangle.py

This commit is contained in:
Lukas Baumann 2021-02-18 19:02:07 +01:00 committed by GitHub
parent 79787f418e
commit 38601c2629
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
07/c/2 - One Triangle.py Normal file
View File

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