N = int(input()) ans = 0 i = 2 while i <= N: c = 0 if N < i: break while N % i == 0: c+=1 N /= i ans ^= c i += 1 print('Bob' if ans == 0 else 'Alice')