#include #include using namespace std; int arr[10000000]; void Eratosthenes(int N){ for(int i=0; i> N>> L; Eratosthenes(L); long long ans=0; for(int i=2; i<=L; i++){ if(arr[i]==0) continue; int mi=(N-1)*i; if(mi>L) continue; ans=ans+(L-mi+1); } cout<< ans<< endl; return 0; }