eolymp
Problems

Shift the elements to the right

Shift the elements to the right

Time limit 1 second
Memory limit 128 MiB

The linear array of n integers is given. Shift its elements cyclically one position to the right.

Input data

The number of elements n\;(n \le 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 data

Print n numbers in one line — the new array elements.

Examples

Input example #1
4
1 2 3 4
Output example #1
4 1 2 3
Source SFE-2010 Variant 22