Competitions
PP2. Week 4: March 29 - April 4
Invertor
Given n integers. Print them in reverse order.
Input
First given number n (0 < n < 100), then given n integers.
Output
Print the given n integers in reverse order.
Input example #1
7 2 4 1 3 5 3 1
Output example #1
1 3 5 3 1 4 2