#38948: python


zerovbulitania@gmail.com (whitez)

學校 : 國立高雄師範大學
編號 : 247652
來源 : [36.238.171.199]
最後登入時間 :
2024-02-19 15:46:12
a015. 矩陣的翻轉 | From: [218.166.8.121] | 發表日期 : 2024-01-06 14:35

while 1:
    try:
        x,y = list(map(int,input().split()))

        end = []

        for i in range(x):
    
            fac = list(map(int,input().split()))
            end.append(fac)

        end = zip(*end)
        for i in end:
            print(*i)
    except:
        break

 
ZeroJudge Forum