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