Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

Read a list of numbers from input. The first line tells you how many numbers there are, and each following line has one number.

Print the numbers in reverse order, each on its own line.

Example input:

text
4
1
2
3
4

Example output:

text
4
3
2
1

💡 Hints

?Hint 1
🔒Hint 2
🔒Hint 3
python