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