#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,x,y;
cin>>n;
int maxx=0,maxy=0,minx=1000010,miny=1000010;
for(int i=0;i<n;i++)
{
cin>>x>>y;
if(x>maxx) maxx=x;
if(y>maxy) maxy=y;
if(x<minx) minx=x;
if(y<miny) miny=y;
}
x=(maxx-minx);
y=(maxy-miny);
if(x>y) cout<<xx;
else cout<<yy;
return 0;
}