99991126 - 打印矩阵

通过次数

151

提交次数

248

Time Limit : 1 秒
Memory Limit : 128 MB

给定一个 row×col 的二维数组 a,请你编写一个函数,void print2D(int a[][N], int row, int col),打印数组构成的 row 行,col 列的矩阵。

注意,每打印完一整行需要输出一个回车。

数据范围 1≤row≤100, 1≤col≤100

Input

第一行包含两个整数 row,col。

接下来 row 行,每行包含 col 个整数,表示完整二维数组 a。

Output

共 row 行,每行 col 个整数,表示打印出的矩阵。

Examples

Input

3 4
1 3 4 5
2 6 9 4
1 4 7 5

Output

1 3 4 5
2 6 9 4
1 4 7 5