1388: 隔行扫描
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:5
Solved:5
Description
不允许普通用户打印题目,请教师登录后使用。如有疑问请联系管理员!
Input
第一行有两个参数m,n(1≤m,n≤2000),分别表示屏幕点阵的行数和列数。 其后的m行,n列中的每个元素为一个整数,表示该点的RGB颜色值c,0≤c≤(2^24-1)。
Output
请按隔行扫描的方式输出点阵。
Sample Input Copy
4 4
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
Sample Output Copy
1 2 3 4
9 10 11 12
5 6 7 8
13 14 15 16