You are viewing a single comment's thread. Return to all comments →
N,X=map(int,input().split()) ll=[] for _ in range(X): l=list(map(float,input().split())) ll.append(l) for i in zip(*ll): print("{:.1f}".format(sum(i)/X))
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 →