#include #define rep(i,n) for(int i=0;i<(n);++i) using namespace std; using ll = long long; #include using namespace atcoder; struct S{ int a,b,sz; }; S op(S a, S b){ return S{a.a+b.a,a.b+b.b,a.sz+b.sz}; } S e(){ return {0,0,0}; } using F = int; S mapping(F f, S s){ if(f==1){ s.a = s.sz; s.b = 0; } if(f==2){ s.a = 0; s.b = s.sz; } return s; } F composition(F f, F g){ return (f==0?g:f); } F id(){ return F{0}; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,q; cin >> n >> q; lazy_segtree seg(n); rep(i,n) seg.set(i,S{0,0,1}); ll A = 0; ll B = 0; rep(i,q){ int x,l,r; cin >> x >> l >> r; r++; if(x==0){ S res = seg.prod(l,r); if(res.a>res.b){ A += res.a; } if(res.a