import sys
input = sys.stdin.readline
N = int(input())
for i in range(N, 0, -1):
value = "*" * i
print (value.rjust(N, ' '))
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 2529번 부등호 (파이썬) (0) | 2022.03.16 |
---|---|
[백준] 2475번 검증수 (파이썬) (0) | 2022.03.16 |
[백준] 2440번 별 찍기 - 3 (C++) (0) | 2022.03.16 |
[백준] 2439번 별 찍기 - 2 (C++) (0) | 2022.03.16 |
[백준] 2439번 별 찍기 - 1 (C++) (0) | 2022.03.15 |