#include <iostream>
#include <map>
#include <string>
#include <vector>
using namespace std;

int main() {
	map<string, vector<int> > m;
	m["Hi there"] = {1, 2, 3};
	m["Bobman"] = {2, 2, 4};
	m["Yes"] = {2, 2, 4};
	
	for (const auto& item : m)
	{
		cout << item.first << endl;
	}
	return 0;
}