Map Multimap C++ Tutorial

#include 
#include 
#include 
using namespace std;
int main(int argc, char** argv)
{
  pair myPair("hello", 5), myOtherPair;
  myOtherPair.first = "hello";
  myOtherPair.second = 6;
  pair myThirdPair(myOtherPair);
  if (myOtherPair == myThirdPair) {
    cout << "myOtherPair is equal to myThirdPair\n";
  } else {
    cout << "myOtherPair is not equal to myThirdPair\n";
  }
  pair aPair = make_pair(5, 10);
  return (0);
}