n = int(input()) a = list(map(int, input().split())) count = sum(1 for x in a if x > 1) if count % 2 == 0: print("Alice") else: print("Bob")