지나가던 개발자

[Python] 백준 2440번(별 찍기 - 3) 문제 풀이 본문

PS/Python

[Python] 백준 2440번(별 찍기 - 3) 문제 풀이

KwonYongHyeon 2022. 5. 16. 18:50

 

for i in range(int(input()), 0, -1):
    print("*" * i)
Comments