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