1255: 矩阵转置

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:15 Solved:8

Description

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

Input

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

Output

转置矩阵

Sample Input Copy

2
1 2
1 2

Sample Output Copy

1 1
2 2