#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
class CPoint{
private:
int x, y;
public:
CPoint(){}
CPoint(int xx, int yy):x(xx),y(yy){}
~CPoint(){}
double operator-(CPoint c);
};
double CPoint::operator-(CPoint c)
{
return sqrt((x...