#include <iostream>
#include <unordered_map>
using namespace std;
int main()
{
unordered_map<string, int> sample;
sample["first"] = 10;
sample["second"] = 20;
sample["third"] = 30;
for (auto val : sample)
cout << val.first << " " << val.second << endl;
}