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