set<int> sa;
bool flag = sa.insert(1).second;
bool flag2 = sa.insert(1).second;
cout<<"flag="<<flag<<endl;
cout<<"flag2="<<flag2<<endl;