import collections def prime_factorize(n): a = [] while n % 2 == 0: a.append(2) n //= 2 f = 3 while f * f <= n: if n % f == 0: a.append(f) n //= f else: f += 2 if n != 1: a.append(n) return a def n_fact(N): c = collections.Counter(prime_factorize(N)) return c N = int(input()) M = list(map(int, input().split())) X = 0 for m in M: for v in n_fact(m).values(): X ^= v % 3 if X == 0: print("Bob") else: print("Alice")