#41277: python


suyueh (suyueh)

學校 : 不指定學校
編號 : 272111
來源 : [49.216.223.40]
最後登入時間 :
2024-09-07 15:48:59
a015. 矩陣的翻轉 | From: [125.229.229.84] | 發表日期 : 2024-07-16 13:59

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