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