using System;
public class Program
{
public static void Main()
//two dimensional array declared and initiliazed
int row=2;
int columns=4;
int[,] matrix = new int[2,4]{
{0, 2, 4, 8}, // row 0 values
{10, 12, 14, 16}, // row 1 values
};
for (int i=0; i<row; i++)
for (int j=0; j<columns; j++)
Console.WriteLine(" Row "+i+ " , column "+j +" value ="+matrix[i, j]);
}