#include #include using namespace std; int n,k = 0; double a,b,dist=1,u,cx,cy; int gasit = 0; double pairs[50][2]; int overlap(double x, double y, double x2, double y2) { if (sqrt((x-x2)*(x-x2) + (y-y2)*(y-y2)) < 2) return 1; return 0; } int in_circle(double x, double y) { if (sqrt(x*x+y*y) > n-1) return 0; return 1; } int main() { cin>>n; cout<<0<<" "<<0<>a>>b; pairs[k][0] = a; pairs[k][1] = b; k++; gasit = 0; while (cx