public static void Main()
int rows= int.Parse(Console.ReadLine());
int colons= int.Parse(Console.ReadLine());
int [,] array= new int [rows, colons];
for (int row = 0; row < rows; row++)
for (int colon= 0; colon < colons; colon++)
array [row, colon]= int.Parse(Console.ReadLine());
for (int row = 0; row < rows; row++)
for (int colon= 0; colon < colons; colon++)
Console.Write(array [row, colon]+ " ");