Task Description
矩陣翻轉
Input Format
第一行會有兩個數字,分別為 列(row)小於100 和 行(column)小於100,接著下方就是這個矩陣的內容。
Output Format
直接輸出翻轉後的矩陣
每行最後多一個空格
Sample Input
123 2 3
3 1 2
8 5 4
Sample Output
123 3 8
1 5
2 4
Task Description
矩陣翻轉
Input Format
第一行會有兩個數字,分別為 列(row)小於100 和 行(column)小於100,接著下方就是這個矩陣的內容。
Output Format
直接輸出翻轉後的矩陣
每行最後多一個空格
Sample Input
123 2 3
3 1 2
8 5 4
Sample Output
123 3 8
1 5
2 4