#include <iostream>
#include <map>
#include <string>

int main()
{
	std::map<std::string, int> Matt;

	Matt["January"] = 1;
	Matt["Febuary"] = 2;
	Matt["March"] = 3;
	Matt["April"] = 4;
	Matt["May"] = 5;
	Matt["June"] = 6;
	Matt["July"] = 7;
	Matt["August"] = 8;
	Matt["September"] = 9;
	Matt["October"] = 10;
	Matt["November"] = 11;
	Matt["December"] = 12;

	std::cout << "May is the " << Matt["May"] << "th month\n";

	return 0;
}


