#include #include using namespace std; std::map ms; int main() { // your code goes here int x,n; cin>>n; long long int ans=0; for(int i=0;i>x; if(x==0){ int p1; cin>>p1; ms[p1]+=1; }else{ int l,r; cin>>l>>r; std::map::iterator it=ms.lower_bound(l); while (it!=ms.end() && (*it).first<=r){ ans+=(*it).second; it++; } } } cout<