#include <stdio.h>

int
main()
{
  int i,j = i = 0; // counter variables initialized to 0

  int array3[2][2] = {{5, 3}, {2, 1}};
  int array1[][3] = {{4, 5, 3}, {5, 3, 5}, {5, 2, 8}};
  int array2[][5] = {{3, 4, 1}, {6, 3, 2, 4, 1}, {3, 5}};
  int array4[3][] = {{2, 4, 3}, {4, 4, 1}, {1, 2, 3}};
  int array5[][] = {{3, 2, 1}, {4, 3, 2}, {2, 4, 6}};


} // main
