/*********************************************
 ** PROTOTYPES & STRUCT DEFINITIONS
 *********************************************/
class point
{
  double x, y;
};
void read(point &p, istream &IN);
void write(point p, ostream &OUT);
point add(point a, point b)
point div(point P, double z)