

#include <iostream.h>
int main()
  {
    int array_int[2][3] = {1, 2, 3, 4, 5, 6};

   int i, j;

  for (i=0; i<=1; i++){
      for (j=0; j<=2; j++)
         cout << "i=" << i << "j=" << j << " "<< array_int [i][j] << endl;
   }
    return 0;
 }

