N = int(input()) s = 0 for i in range(2, int(N ** 0.5) + 1): t = 0 while N % i == 0: N //= i t += 1 s ^= t print('Alice' if s else 'Bob')