struct point{double x;double y;}double get_distance(point* a, point*b){double x = sqrt((*a)*(*a) * (*b) * (*b));return x;}