def solve(): a, b = map(int, input().split()) return a == 1 or (a >= b and not (a == b + 1)) print("Alice" if solve() else "Bob")