백준 2440 별 찍기 - 3 [Python]

지구온난화·2023년 3월 13일
0

백준 브론즈

목록 보기
8/52

n = int(input())

for i in range(n, 0, -1):
    print("*"*i)

2023-03-13

0개의 댓글