a,b=map(int,input().split()) if a%b==0 or a>b+1 or a==1: print('Alice') else: print('Bob')