코딩 테스트 준비하기/백준 - 반복문

[2438] 별찍기 -1

젤리의it 2023. 6. 29. 14:39
count = int(input())

for i in range(1, count+1) :
    print("*"*i)
저작자표시 (새창열림)