#41277: python


suyueh (suyueh)

學校 : 不指定學校
編號 : 272111
來源 : [125.228.45.241]
最後登入時間 :
2025-06-02 18:21:06

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