fork download
  1. #include <iostream>
  2. #include <map>
  3. using namespace std;
  4.  
  5. int main() {
  6. std::map<int, std::map<int,int>> map1;
  7. map1.insert(make_pair(5,std::map<int,int>()));
  8. map1.insert(make_pair(5,std::map<int,int>()));
  9. return 0;
  10. }
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
Standard output is empty