You are viewing a single comment's thread. Return to all comments →
X=[] l=list(map(int,input().split())) for _ in range(l[1]): A=list(map(float,input().split())) X.append(A) for i in list(zip(*X)): print(sum(list(i))/l[1])
Seems like cookies are disabled on this browser, please enable them to open this website
Zipped!
You are viewing a single comment's thread. Return to all comments →