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