#include
#include
#include
using namespace std;
int main(int argc, char** argv)
{
pair myPair("hello", 5), myOtherPair;
// assign directly to first and second
myOtherPair.first = "hello";
myOtherPair.second = 6;
// copy construcor
pair myThirdPair(myOtherPair);
return (0);
}