#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);
pair aPair = make_pair(5, 10);
return (0);
}