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

int main() {
	map<string, vector<string> > myDictionary;
	myDictionary["cat"] = {"siamese", "15", "3-legged", "pussy", "George"};
	cout << "cat: ";
	for (auto x : myDictionary["cat"])
		cout << x << " ";
	cout << endl;
	return 0;
}