fork download
  1. #include <iostream>
  2. #include <set>
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7. std::set<string> to_be_inserted;
  8. std::set<string> res;
  9. cout << "check everything is fine" << endl;
  10. res.insert(to_be_inserted.begin(), to_be_inserted.end());
  11. cout << "how about now ?" << endl;
  12. return 0;
  13. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
check everything is fine
how about now ?