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