intprime(int x){ for(int i = 2; i <= sqrt(x);i++){ if(x % i == 0) return0; } return1; }
intmain(){ int n; cin >> n; int cnt = 0; int x,y; x = 2; y = 3; for(int i = 4; i <= n; i++){ if(prime(i)){ x = y; y = i; if(y - x == 2) cnt++; } } cout << cnt; return0; }