You are viewing a single comment's thread. Return to all comments →
To keep things clear and simple:
n, x = map(int, input().split()) sheet = [] for _ in range(x): sheet.append( map(float, input().split()) ) for i in zip(*sheet): print( sum(i)/len(i) )
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 →
To keep things clear and simple: