Files
contests/Codeforces/CodeforcesRound1034(Div3)/ABlackboardGame/solution.cpp

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";
}
}