#include using namespace std; using ll = long long; constexpr char newl = '\n'; struct UnionFind { //各要素が属する集合の代表(根)を管理する //もし、要素xが根であればdata[x]は負の値を取り、-data[x]はxが属する集合の大きさに等しい vector data; UnionFind(int sz) : data(sz, -1) {} bool unite(int x, int y) { x = find(x); y = find(y); bool is_union = (x != y); if (is_union) { if (data[x] > data[y]) swap(x, y); data[x] += data[y]; data[y] = x; } return is_union; } int find(int x) { if (data[x] < 0) { //要素xが根である return x; } else { data[x] = find(data[x]); //data[x]がxの属する集合の根でない場合、根になるよう更新される return data[x]; } } bool same(int x, int y) { return find(x) == find(y); } int size(int x) { return -data[find(x)]; } }; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int L, R; cin >> L >> R; UnionFind uf(R - L + 1); for (int i = L; i <= R; ++i) { for (int j = 2 * i; j <= R; j += i) { uf.unite(i - L, j - L); } } int ans = 0; for (int i = L; i < R; i++) { if (uf.same(i - L, i + 1 - L)) continue; uf.unite(i - L, i + 1 - L); ++ans; } cout << ans << newl; return 0; }