#include <string>
#include <map>

void main()
{
  typedef less<string> string_cmp;
  map<string,int,string_cmp> m;
  int x = m["Henry"];
  m["Harry"] = 7;
  int y = m["Henry"];
  m["Harry"] = 9;

  cout << m["Harry"] << " " << m["Henry"] << endl;

}

