Problems
Two-dimensional array - input, output
Two-dimensional array - input, output
You are given a two-dimensional array of size n * m. Read the two-dimensional array and print it.
Input
The first line contains two numbers n and m - the number of rows and columns in array. Then n lines of m integers are given - the elements of array. All numbers do not exceed 100 by absolute value.
Output
Print n lines, each with m integers - the elements of array.
Input example #1
4 5 1 3 2 4 5 4 2 7 6 5 9 2 3 5 1 7 8 1 7 2
Output example #1
1 3 2 4 5 4 2 7 6 5 9 2 3 5 1 7 8 1 7 2