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