#include<bits/stdc++.h>
using namespace std;
int main(){
int N;
cin>>N;
long int start[N],end[N];
for(int i=0;i<N;i++){
cin>>start[i]>>end[i];
}
for(int i=0;i<N;i++)
for(int j=0;j<N;j++){
if(i!=j and start[i]!=end[i]){
if(start[i]<=end[j] and start[i]>=start[j]){
if(end[i]<=end[j] and end[i]>=start[j]){
end[i]=0;
start[i]=0;
}
else{
start[i]=end[j];
}
}
if(end[i]>start[j] and end[i]<end[j])
end[i]=start[j];
}
}
int total=0;
for(int i=0;i<N;i++)
total=total+end[i]-start[i];
cout<<total;
}