#include<iostream> using namespace std; class point{ private: int x; int y; public: point() {} point(int x,int y):x(x),y(y){} void setpoint(int x,int y) { this->x = x; this->y = y; } point operator +(point &c) { point temp; ...