A,B=list(map(int,input().split())) if A==B: print("Alice") exit() if A+1==B: print("Bob") exit() if A>B: print("Alice") else: print("Bob")