#P2011. 数组元素平移
数组元素平移
Description
A数组存放从1开始的10个自然数,将A数组中第一个元素移到数组末尾,其余数据依次往前平移一个位置。
Input
Two integers x and y, satisfying .
Output
十个自然数,占四位场宽
Samples
1 2 3 4 5 6 7 8 9 10
2 3 4 5 6 7 8 9 10 1
Limitation
1s, 1024KiB for each test case.