#pragma GCC optimize("Ofast") #include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; map mp; for(int i=0;i> s; mp[s]++; } for(int i=0;i+1> s; mp[s]--; } for(auto p:mp){ if(p.second!=0){ cout << p.first << endl; } } }