return true; } int main(){ int n,tot=0; cin>>n; for(int i=2;i<=n;i++){ if(IsPrime(i)){ tot++; } } cout< return 0; }