#include<bits/stdc++.h>
#define MAXINT 32767
using namespace std;
typedef long long ll;
struct node{
	double x;
	double y;
};
double dist(node a,node b)
{
	return sqrt(pow(a.x-b.x,2)+pow(a.y-b.y,2));
}
bool isTrue(bool a[100],int n)
{
	bool tag=true;
	for(int i=0;i<n;i++...