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 (myPair < myOtherPair) {
    cout << "myPair is less than myOtherPair\n";
  } else {
    cout << "myPair is greater than or equal to myOtherPair\n";
  }
  return (0);
}