eolymp
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.

Time limit 1 second
Memory limit 128 MiB
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
Author Жуковський Сергій Станіславович
Source Джерело Серія задач "Абетка програмування"