Today, we're learning about the Array data structure.
Given an array, A, of N integers, print A's elements in reverse order as a single line of space-separated numbers.
The first line contains an integer, N (the size of our array). The second line contains N space-separated integers describing array A's elements.
1<=N<=1000
Print the elements of array A in reverse order as a single line of space-separated numbers.
4
1 4 3 2
2 3 4 1