17 lines
212 B
C++
17 lines
212 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int t;
|
|
cin >> t;
|
|
while (t--) {
|
|
int n;
|
|
cin >> n;
|
|
if (!(n & ((1 << 2) - 1)))
|
|
cout << "Bob\n";
|
|
else
|
|
cout << "Alice\n";
|
|
}
|
|
}
|