#ifndef POINT_H

#define POINT_H

#include <iostream>
#include <fstream>

using namespace std;


struct point
{
  double x, y;
};

void read (point&);
void write(point);

#endif
