https://www.acmicpc.net/problem/2742
n = int(input())
numbers = []
for i in range(1, n+1):
numbers.append(i)
numbers.reverse()
for i in numbers:
print(i)
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 11022번 - A+B - 8 (0) | 2020.06.09 |
---|---|
[Python] 백준 11021번 - A+B - 7 (0) | 2020.06.09 |
[Python] 백준 2741번 - N 찍기 (0) | 2020.06.09 |
[Python] 백준 15552번 - 빠른 A+B (0) | 2020.06.09 |
[Python] 백준 8393번 - 합 (0) | 2020.06.09 |
댓글