#include<iostream.h>
#include<conio.h>
int *big(int &, int &);
int main()
{
int a, b, *c;
clrscr();
cout<<"Enter two integers"<<endl;
cin>>a>>b;
c = big(a,b);
cout<<"The bigger value is : "<<*c<<endl;
getch();
return 0;
}
int *big(int &x, int &y)
{ if(x > y)
return (&x);
else
return (&y); }