Files
kattis/reverse.py
2023-06-23 06:27:10 +00:00

8 lines
127 B
Python

n = int(input())
points = []
for _ in range(n):
points.append(int(input()))
points.reverse()
for p in points:
print(p)