본문 바로가기

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

#18 백준 파이썬 [2438] 별찍기 - 1

#18 백준[2438] 별찍기 - 1

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



#18 [2438] Solution

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