Read n x m matrix, print sum of each row.
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
3 3 1 2 3 4 5 6 7 8 9
Output
6 15 24