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