본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#19 백준 파이썬 [2439] 별찍기 - 2

#19 백준[2439] 별찍기 - 2

https://www.acmicpc.net/problem/2439



#19 [2439] Solution

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