#include <iostream>
using namespace std;

#include <iostream>

using namespace std;

int main()
{   
    const int MAX_ROWS = 2;
    const int MAX_COLS = 4;

    int BigSmall[MAX_ROWS][MAX_COLS] = 
    {
        {1,3,5,7},
        {2,4,6,8}
    };

for( int Row = MAX_ROWS-1; Row >= 0 ; Row--) {
    for( int Column = MAX_COLS - 1; Column >= 0 ; Column--) {
        cout << "Integer[" << Row << "][" << Column << "] = " << BigSmall[Row][Column] << endl;
    }   
}
        return 0;
}