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