Problem I: 【二维数组】方阵变形

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:40 Solved:37

Description

把一个方阵行列交换后输出

Input

n m
n行m列整数

Output

m行n列,每个元素就是原数

Sample Input Copy

3 2
20 30 
19 76
40 31

Sample Output Copy

20 19 40
30 76 31