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