Skip to content

Commit

Permalink
[BOJ] 2522(#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
heerucan committed May 27, 2022
1 parent d0edf48 commit 5e300f2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions BOJ/2522.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# BOJ 브론즈3 2522
# 입출력

n = int(input())

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

0 comments on commit 5e300f2

Please sign in to comment.