#include <algorithm>
#include <limits.h>
#include <iostream>
#include <iomanip>

int board[5][5];

using namespace std;

int main()
{
  std::fill(&board[0][0], &board[5][5], INT_MAX);
  cout << INT_MAX << endl;

   for(int r = 0; r < 5; r++) {
        for(int c = 0; c < 5; c++) {
            cout << setw(3) << board[r][c];
        }   
        cout << endl;
    }
}    