t = int(input()) r = 0 i = 2 while t > 1: if i*i > t: i = t b = 0 while t % i == 0: t //= i b += 1 r ^= b i += 1 print('Alice' if r else 'Bob')