#include <iostream>
#include<bits/stdc++.h>
using namespace std;
int main() {
    unordered_map<string,set<int>> map;
    set<int> s;
    s.insert(1);
    s.insert(2);s.insert(3);
    map.insert(make_pair("Screen1",s));
    for(auto it : map)
    {
        cout<<it.first<<endl;
        it.second.insert(5);
    }
    for (auto i : map["Screen1"])
    {
        cout<<i<<endl;
    }
}
In the above stated code I am trying to insert a value 5 in the set inside the map. but it.second.insert(5); doesnot do the trick
here is the output that i am getting
Screen1
1
2
3
 
     
    