n=int(input()) root=n i=2 dabri=False sum=[] while n!=1: count=0 while n%i==0: count+=1 n/=i sum.append(count) i+=1 temp=0 for i in sum: temp^=i print("Bob" if temp==0 else "Alice")