반응형
https://www.acmicpc.net/problem/2523
# @Author YoungMinKim
# baekjoon
n= int(input())
for i in range(n):
print('*'*(i+1))
for j in range(n-1,0,-1):
print('*'*j)
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 2530 (0) | 2020.08.24 |
---|---|
baekjoon - python - 2525 (0) | 2020.08.24 |
baekjoon - python - 2480 (0) | 2020.08.24 |
baekjoon - python - 2446 (0) | 2020.08.24 |
baekjoon - python - 2441 (0) | 2020.08.24 |
댓글