#include #include class assign { int x,y; public: void getdata(void); void putdata(void); void operator =(assign &s); }; void assign::operator =(assign &s) { x=s.x; y=s.y; } void assign::getdata(void) { cout<<"\n Enter the value of x :"; cin>>x; cout<<"\n Enter the value of y :"; cin>>y; } void assign::putdata(void) { cout<<"\n The copied value of x is : "<