#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); long long L, R; if (!(cin >> L >> R)) return 0; // Với 1 <= L < R, gcd luôn là 1 theo chứng minh ở trên. cout << 1 << '\n'; return 0; }