Given integer N followed by a list of N integers, print the N integers in reversed order.
NOTE: Do NOT print a space after the last number
In the first line only 1 integer N
In the second line, N integers separated by a space
5 1 2 3 4 5
5 4 3 2 1
Notice how there is no space after the last number 1.
4 6 2 3 7
7 3 2 6
6 6 5 4 3 2 1
1 2 3 4 5 6
Test your solution here
when it passes, copy it and submit it here so your coach can grade it.