public static void Main()
Console.WriteLine( " Me podria decir de cuantos renglones quiere para su matriz");
x = int.Parse(Console.ReadLine());
Console.WriteLine( " Me podria decir de cuantos comlumnas quiere para su matriz");
y = int.Parse(Console.ReadLine());
int[,] matriz = new int[x,y];
for (int ren = 0; ren < x; ren = ren + 1)
for (int col = 0; col < y; col = col + 1)
Console.WriteLine( " Ingrese componente");
matriz[ren, col] = int.Parse(Console.ReadLine());
Console.Write(matriz[ren, col] + " ");