13269: 统计(3)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:0

Description

编程将下列矩阵中的元素向右移动一列,最右一列移至第一列。

 1   4    6

 8   10   12

Input

输入这个矩阵

Output

输出变化后的矩阵。

Sample Input Copy

1 4 6
8 10 12

Sample Output Copy

6 1 4
12 8 10