n = int(input()) a = list(map(int, input().split())) x = 0 for v in a[1::2]: if v: x += 1 print("Alice" if x%2 else "Bob")