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