public static void Main()
Console.WriteLine("Здравей Свят!");
int rows = int.Parse(Console.ReadLine());
int cols = int.Parse(Console.ReadLine());
int[,] matrix = new int[rows,cols];
for(int row = 0; row<rows; row++)
for(int col = 0; col < cols; col++)
Console.Write("matrix[{0},{1}] = ",row, col);
matrix[row,col] = int.Parse(Console.ReadLine());
for(int row = 0; row< matrix.GetLength(0); row++)
for(int col = 0; col< matrix.GetLength(0); col++)
Console.Write(matrix[row,col]+" ");