#include<iostream> using namespace std; int main(){ int L,M,i,j; int section[10001]= {0}; int a,b,tn=0,te,ts; cin>>L>>M; for (i=0; i<M; i++) { cin>>a>>b; for(j=a; j<=b; j++) section[j]=1; } for(i=0; i<=L; i++) if(section[i]==1) ts++; te=L+1; tn=te-ts; cout<<tn; return 0; }