N=int(input()) A=list(map(int,input().split())) XOR=0 for i in range(1,N,2): XOR^=A[i] if XOR==0: print("Bob") else: print("Alice")