본문 바로가기

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

#20 백준 파이썬 [2440] 별찍기 - 3

#20 백준[2440] 별찍기 - 3

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


#20 [2440] Solution

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