#include <iostream>

#include <vector>
#include <map>
#include <string>


int main()
{
    using namespace std;
    vector<pair<string, string>> pairs = { {"govno",  "shit"}, {"kod", "code"} };
    map<string, string> res { pairs.begin(), pairs.end() };

    for (auto && mapPair : res) {
        cout << mapPair.first << ": " << mapPair.second << endl;
    }

    return EXIT_SUCCESS;
}
