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