2138: 数组平移问题

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:7 Solved:2

Description

将长度为n的a数组中的第一个元素移到数组末尾,其余数据依次往前平移一个位置.

Input

第一行n表示数组的长度
第二行连续输入n个数, 用空格隔开

Sample Input

5
10 22 34 56 7

Sample Output

22 34 56 7 10