n, m = map(int, input().split())
total = 0

for _ in range(n):
    row = list(map(int, input().split()))
    total += sum(row)
print(total)
  • row 先算每列的
  • total再算每行的