2141: 乾坤大挪移

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:5 Solved:1

Description

5行5列二维数组a中每个元素向右移一列, 最右一列换到最左一列, 移后的结果保存到a数组中,并按矩阵形式输出.

Input

5行5列分别为二维数组各个元素的值.

Output

输出转换后的结果

Sample Input

1 2 3 4 5
6 7 8 9 10
1 2 3 4 5
6 7 8 9 10
1 2 3 4 5

Sample Output

5 1 2 3 4 
10 6 7 8 9
5 1 2 3 4
10 6 7 8 9
5 1 2 3 4