#60. 矩阵转置0

矩阵转置0

说明

输出已知矩阵的转置矩阵(行与列的数量相同 )

The old array and new array should share the same space.
 At the same time your program should compute the numbers that more than 60.

输入格式

4 //矩阵的维度

71 72 73 74 //4×4的数据
5 76 7 8
9 10 71 72
13 14 15 76

输出格式

71 5 9 13 //转置矩阵
72 76 10 14
73 7 71 15
74 8 72 76
8//大于60的数目



样例

4
71 72 73 74
5 76 7 8
9 10 71 72
13 14 15 76
71 5 9 13
72 76 10 14
73 7 71 15
74 8 72 76
8