N=int(input()) A=list(map(int,input().split())) X=0 for a in A: if a!=1: X+=1 print("Bob" if X%2 else "Alice")