-
#include #include using namespace std; class Point { private: int x; int y; public: Point() : x(0), y(0) {} Point(int myx, int myy) :x(myx), y(myy) {} ~Point() { cout