#include
#include
using namespace std;
int main ()
{
pair p;
p = make_pair(1,2);
cout<<"Pair(first,second) = ("<
Correct Answer is : func1