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


풀이
N = int(input())

for i in range(1,N+1):
    print("*"*i)

 

+ Recent posts