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