// In the name of Allah the most Merciful. #include using namespace std; typedef long long ll; const int MAX = 1e5+100; vectorprimes; bool isPrime[MAX]; void seive() { for(int i=0;i> t; while(t--){ int n , counter = 0; cin >> n; for(int i=0;primes[i]<=n;i++){ counter++; //cout << "YES" << endl; } if(counter == 0)cout << "Bob" << endl; else if(counter%2==0)cout << "Bob" << endl; else cout << "Alice" << endl; } return 0; }