Programming/백준

[백준] 2438 - 별 찍기 - 1 (파이썬)

pental 2020. 4. 2. 00:32
a = int(input())

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

 

저작자표시 비영리 (새창열림)