#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int a, b;
	cin>>a;
	while(a--) {
		cin>>b;
		if(b%2) cout<<"BOB"<<endl;
		else cout<<"ALICE"<<endl;
	}
	return 0;
}