public static void Main()
Console.WriteLine("Ingrese el numero de renglones de la matriz: ");
renglon = int.Parse(Console.ReadLine());
Console.WriteLine("Ingrese el numero de columnas: ");
columna = int.Parse(Console.ReadLine());
Console.WriteLine("EL TAMAÑO DE LAS FILAS ES INCORRECTO, DEBE SER MENOR QUE 16");
while (tam <= 16 && tam > 0)
int[,] matriz = new int[renglon, columna];
for (int i = 0; i < renglon; i++)
for (int j = 0; j < columna; j++)
Console.WriteLine("Introduce numeros menores a 600 y mayores a 200:");
matriz[i, j] = int.Parse(Console.ReadLine());
while (matriz[i, j] >= 200 && matriz[i, j] <= 600)
Console.WriteLine(numero);
Console.WriteLine("Total de pasos: " + con);