import sys from collections import defaultdict from itertools import combinations readline = sys.stdin.readline N = int(input()) li = tuple(tuple(map(int, readline().split())) for _ in range(N)) MAP = defaultdict(list) LIST = [] for i, j in combinations(li, 2): x = (i[0] - j[0]) y = (i[1] - j[1]) if (x % 2 == 0 and y % 2 == 0 and x not in (-1, 0, 1) and y not in (-1, 0, 1)): MAP[i].append(j) MAP[j].append(i) LIST.append({i, j}) cnt = 0 dp = [LIST[0]] if LIST else [] while dp: fi, se = dp.pop() if MAP[fi] and MAP[se]: for z in MAP[fi]: MAP[z].remove(fi) if not MAP[z]: del MAP[z] for z in MAP[se]: MAP[z].remove(se) if not MAP[z]: del MAP[z] del MAP[fi] del MAP[se] cnt += 1 if MAP: t = tuple(MAP)[0] dp.append((t, MAP[t][0])) print("Bob" if cnt % 2 == 0 else "Alice")