from collections import Counter def factorize(n): if n == 1: return [] res = [] x, y = n, 2 while y * y <= x: while x % y == 0: res.append(y) x //= y y += 1 if x > 1: res.append(x) return res N = int(input()) C = Counter(factorize(N)) g = 0 for v in C.values(): g ^= v print('Alice' if g != 0 else 'Bob')