[BAEKJOON] 2438 : 별 찍기 - 1 - python3 1 2 3 4 n = int(input()) for i in range(1,n+1): print(("*")*i) cs Study/BAEKJOON 2021.08.08