a,b = map(int,input().split()) c = a - b if c >= 2 or c == 0: print("Alice") else: print("Bob")