#include using namespace std; typedef long long ll; int main() { ll a, b; cin >> a >> b; cout << (b / a > 1000 ? 2 : 1) << endl; return 0; }