#include #include #include #include using namespace std; typedef long long ll; typedef pair P; typedef pair T; long long int INF = 2e18; const ll fact_table = 1200008; double Pi = 3.1415926535897932384626; priority_queue pql; priority_queue

pqp; priority_queue

bag; //big priority queue priority_queue ,greater > pqls; priority_queue ,greater

> pqps; //small priority queue //top pop ll dx[8]={1,0,-1,0,1,1,-1,-1}; ll dy[8]={0,1,0,-1,1,-1,-1,1}; char dir[] = "DRUL"; //↓,→,↑,← #define endl "\n" #ifdef ENJAPMA #undef endl #endif #define p(x) cout<=1; i--){ rfact[i-1] = rfact[i] * i; rfact[i-1] %= mod; } return;} ll c3(ll n,ll r){ return (((fact[n] * rfact[r]) % mod ) * rfact[n-r]) % mod;} bool multicase = false; ll n,m,num,a,b,c,d,e,h,q; ll w, k; ll x[500005], y[500005]; ll z[500005]; ll parent[500005], sizes[500005]; void init(ll n){ for(ll i=0;i<=n;i++){ parent[i] = i; } } ll find(ll x){ if(parent[x] == x){ return x; }else{ return parent[x] = find(parent[x]); } } void unite(ll x,ll y){ x = find(x); y = find(y); if(x == y)return; if(sizes[x] < sizes[y])swap(x, y); parent[y] = x; sizes[x] += sizes[y]; } bool same(ll x,ll y){ return find(x) == find(y); } ll size(ll x){ return sizes[find(x)]; } void solve(){ ll l, r; cin >> l >> r; assert(1 <= l && l < r && r <= 200000); init(r + 100); ll ans = r - l; for(ll i=l;i<=r;i++){ for(ll j=2*i;j<=r;j+=i){ if(!same(i, j)){ unite(i, j); ans --; } } } p(ans); return; } int main(){ // init(); ios::sync_with_stdio(false); cin.tie(nullptr); ll q, testcase = 1; if(multicase){ cin >> q; }else{ q = 1; } while(q--){ // pu("Case ");pu("#");pu(testcase);pu(": "); solve(); testcase++; } // solve(); return 0; }