import sys from collections import defaultdict from itertools import combinations readline = sys.stdin.readline f = lambda x, y: (True if (x[0] - y[0]) % 2 == 0 and (x[0] - y[0]) not in (-1, 0, 1) and (x[1] - y[1]) % 2 == 0 and (x[1] - y[1]) not in (-1, 0, 1) else False) N = int(input()) li = tuple(tuple(map(int, readline().split())) for _ in range(N)) MAP = defaultdict(set) LIST = [] for x, y in ((i, j) for i, j in combinations(li, 2) if f(i, j)): MAP[x].add(y) MAP[y].add(x) LIST.append({x, y}) print("Bob" if len(list) % 2 == 0 else "Alice")