#include #include #include using namespace std; int main() { int a, b; cin >> a >> b; if (b >= 100LL * a) cout << 2 << endl; else cout << 1 << endl; return 0; }