#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n,m; cin>>n>>m; vector> A(m); rep(i,m){ int l,r; cin>>l>>r; A[i]={r,l}; } sort(ALL(A)); int cnt=0; int now=-1; rep(i,m){ int l=A[i].second,r=A[i].first; if(l<=now) continue; now=r; cnt++; } cout<