• + 0 comments
    N,X = map(int, input().split())
    [print(sum(z)/X) for z in zip(*[list(map(float,input().split())) for i in range(X)])]