n=int(input()) x=0 l=[] for i in range(2,10000): c=0 while n%i<1:n//=i;c+=1 x^=c if n>1:x^=1 print("Alice"if x else"Bob")