#include"bits/stdc++.h" //#include using namespace std; #define print(x) cout< PI; typedef pair V; typedef vector VE; const ll mod = 100000000000; int n, x[100002], y[100002]; bool now[100002]; int main() { cin >> n; bool flag = 1; REP(i, n)cin >> x[i] >> y[i]; REP(i, n) { flag = 1; rep(j, 0, i) { if (now[j] == 0)continue; ll dist = pow(x[i] - x[j], 2) + pow(y[j] - y[i], 2); if (dist < 400) { flag = 0; } } if (flag)now[i] = 1; } int count = 0; REP(i, n)if (now[i])count++; print(count); return 0; }