#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, k; cin >> n >> k; if (k == 0) { cout << 1 << endl; return 0; } if (n <= k) { cout << "INF" << endl; return 0; } int cnt = 0; for (int i = 0; i <= n << 2; i++) { for (int j = i; j <= i + k; j++) { if ((i & j) == n) { cnt++; } } } cout << cnt << endl; }