/* Point.h */
typedef struct { double x; double y; } point;
double distance(point a, point b);
point randPoint();
