fork download
  1. #include <iostream>
  2. #include <map>
  3. using namespace std;
  4.  
  5. int main() {
  6. map<string, string> a;
  7. string b = a["hey"];
  8. cout << b << endl;
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5512KB
stdin
Standard input is empty
stdout