Reverse
This commit is contained in:
7
reverse.py
Normal file
7
reverse.py
Normal 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)
|
||||
Reference in New Issue
Block a user