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