This commit is contained in:
2023-06-23 06:27:10 +00:00
parent ded539b65c
commit b66af7978e

7
reverse.py Normal file
View File

@@ -0,0 +1,7 @@
n = int(input())
points = []
for _ in range(n):
points.append(int(input()))
points.reverse()
for p in points:
print(p)