#include using namespace std; class Point{ protected: int x,y; public: Point(int a,int b=0) { x=a; y=b; cout<<"constructing point("<