//g++ 1.cpp -std=c++17 -O2 -I . #include using namespace std; using ll = long long; using ld = long double; using vi = vector; using vvi = vector; using vll = vector; using vvll = vector; using vld = vector; using vvld = vector; using vst = vector; using vvst = vector; #define fi first #define se second #define pb push_back #define eb emplace_back #define pq_big(T) priority_queue,less> #define pq_small(T) priority_queue,greater> #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) #define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end()) int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int q; cin>>q; map mp; int sz=0; vi bt(30,0); while(q--){ int op;cin>>op; if(op==1){ int x;cin>>x; if(mp[x]==1)continue; mp[x]++; sz++; rep(i,0,30){ if(x&(1<>x; if(mp[x]==0)continue; mp[x]--; sz--; rep(i,0,30){ if(x&(1<