import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int g = in.nextInt(); for(int a0 = 0; a0 < g; a0++){ int n = in.nextInt(); int count=0; // your code goes here for(int i=2;i<=n;i++){ int not =0; for(int j=2;j<=i/2;j++){ if(i%j==0) { not=1; break;} } if(not==0) count++; } if(count%2==0) System.out.println("Bob"); else System.out.println("Alice"); } } }