#include <iostream>
using namespace std;
int main()
{
int array2d[2][3] =
{
{1,2,3},
{4,5,6}
};
//for printing this array
for (int i = 0; i < 2; i++)
{
for (int j = 0; j < 3; j++)
{
cout<<"The value of "<<i<<","<<j<<" is "<<array2d[i][j]<<endl;
}
}
}