Read n x m matrix, print max of each column.
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
7 8 9