#include<iostream> #include<map> using namespace std; map<int, int> mp; int sss(int a) { for(auto it=mp.begin();it!=mp.end();it++) { a=a-(*it).second; if(a<=0) return (*it).first; } } int main() { string s,b; int t,d; cin>>t; while(t--) { cin>>s>>d; if(s[0]=='a') mp[d]++; else if(s[0]=='d') mp[d]--; else { cout<<sss(d)<<endl; } } return 0; }