#include < iostream > using namespace std; class A { private: int X, Y; public : A ( int myx, int myy) { X = myx; Y = myy ;} void show ( ) { cout << "X =" << X << " Y = " << Y << endl;} <