fork download
  1. #include <iostream>
  2. #include <unordered_map>
  3.  
  4. using namespace std;
  5.  
  6. unordered_map<size_t, string> s{{4, "Govnokod "}, {3, "giv "}, {2, "i "}, {1, "budet "}, {0, "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 3020KB
stdin
Standard input is empty
stdout
git.budet i giv Govnokod