def factorize(n): p = 2 while p * p <= n: while n % p == 0: yield p n //= p p += 1 if n > 1: yield n N = int(input()) ps = set(factorize(N)) def f(n: int) -> bool: res = False for p in ps: x = n while x % p == 0: x //= p res |= not f(x) return res if f(N): print('Alice') else: print('Bob')