Problem1271--矩阵转置

1271: 矩阵转置

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

输入N*N的矩阵,输出它的转置矩阵。

Input

第一行为整数N。 
接着是一个N*N的矩阵。

Output

转置矩阵

Sample Input Copy

2
1 2
1 2

Sample Output Copy

1 1
2 2

Source/Category

 集训六