N = int(input()) x = 0 b = 2 e = 0 while b * b <= N: while N % b == 0: N //= b e += 1 x ^= e b += 1 e = 0 if N > 1: x ^= 1 if x == 0: print("Bob") else: print("Alice")