Skip to content

Commit

Permalink
[BOJ] 2440
Browse files Browse the repository at this point in the history
  • Loading branch information
heerucan committed May 23, 2022
1 parent 8c108dd commit f5490a7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions BOJ/2440.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
n = int(input())

while n != 0:
for i in range(n+1, 1, -1):
print('*', end='')
print()
n -= 1

0 comments on commit f5490a7

Please sign in to comment.