#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--){ long long x; cin >> x; bool zero = false; while(x){ if(x&1){} else zero = true; x >>= 1; } if(zero) cout << "Alice\n"; else cout << "Bob\n"; } }