Problems
Shift the elements to the right
Shift the elements to the right
The linear array of n integers is given. Shift its elements cyclically one position to the right.
Input
The number of elements n (n ≤ 100) in array is given in the first line. The second line contains n elements of array, each of them does not exceed 100 by absolute value.
Output
Print n numbers in one line - the new array elements.
Input example #1
4 1 2 3 4
Output example #1
4 1 2 3