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