def prime_factor(n): factors = {} if n % 2 == 0: cnt = 0 while n % 2 == 0: cnt += 1 n //= 2 factors[2] = cnt i = 3 while i * i <= n: if n % i == 0: cnt = 0 while n % i == 0: cnt += 1 n //= i factors[i] = cnt i += 2 if n != 1: factors[n] = 1 return factors N = int(input()) xor = 0 for p, c in prime_factor(N).items(): xor ^= c print('Alice' if xor else 'Bob')