// C++ program to print all primes smaller than or equal to // n using Sieve of Eratosthenes #include using namespace std; long long int SieveOfEratostnes(long long int n) { bool prime[n+1]; memset(prime, true, sizeof(prime)); for (int p=2; p*p<=n; p++) { if (prime[p] == true) { // Update all multiples of p for (int i=p*2; i<=n; i += p) prime[i] = false; } } long long int count=0; for (int p=2; p<=n; p++) if (prime[p]) count++; return count; } int main() { int q; cin>>q; while(q--) { long long int n,k; cin>>n; k=SieveOfEratostnes(n); if(k%2==0) cout<<"Bob"<