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(); ArrayList list = new ArrayList(); int count=0; for(int i=2; i<=n; i++){ int limit = (int)Math.sqrt(i); boolean flag = true; for(int j=2;j<=limit;j++){ if(i%j==0){ flag = false; break; } } if(flag){ // System.out.println(i+" "); count++; } } //count--; // System.out.print(count+" "); if(count%2==0){ System.out.println("Bob"); }else{ System.out.println("Alice"); } // your code goes here } } }