#include #define rep(i, a, n) for(int i = a; i < n; i++) #define int long long using namespace std; typedef pair P; const int mod = 1000000007; const int INF = 1e18; signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n, k; cin >> n >> k; int ans = 0; if(n == 0 && k == 1){ cout << "INF" << endl; return 0; } int msbn = 0; for(int i = 0; i < 20; i++){ if(n <= (1LL << i)){ msbn = i; break; } } for(int i = 0; i < (1LL << msbn); i++){ for(int j = i; j <= i + k; j++){ if((i & j) == n){ ans++; } } } cout << ans << endl; }