#include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) templatebool chmax(T &x, T y){if(x>=y)return false;x=y;return true;} templatebool chmin(T &x, T y){if(x<=y)return false;x=y;return true;} int main(){ set s; rep(i, 60)s.insert((1ll<> T; while(T--){ cin >> N; cout << (s.count(N) ? "Bob" : "Alice") << endl; } }