#include <iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int n;
while(cin>>n)
{
int a[n][n];
for(int i=0;i<n;i++)
for(int j=0;j<n;j++)
cin>>a[i][j];
for(int i=0;i<n;i+=2)
{
for(int j=0;j<n;j+=2)
{
cout<<max(max(max(a[i+1][j],a[i][j+1]),a[i+1][j+1]),a[i][j])<<" ";
}
cout<<endl;
}
} return 0;
}