using System;
public class Program
{
public static void Main()
int[,] emon=new int[3,3];
emon[0,1]=10;
emon[1,2]=10;
emon[2,0]=10;
for(int i=0; i<3; i++)
for(int j=0; j<3; j++)
Console.Write(emon[i,j] + " ");
}
Console.WriteLine();