fork download
  1. #include <iostream>
  2. #include <unordered_map>
  3.  
  4. using namespace std;
  5.  
  6. unordered_map<size_t, string> s{{0, "Govnokod "}, {1, "giv "}, {2, "i "}, {3, "budet "}, {4, "git."}};
  7.  
  8. int main() {
  9. for(int i=0, e=s.size(); i<e; ++i)
  10. cout<<s[i];
  11. return 0;
  12. }
Success #stdin #stdout 0s 3064KB
stdin
Standard input is empty
stdout
Govnokod giv i budet git.