def solve(a, b): if a < b: a, b = b, a if b == 0: return False if a // b >= 2: return True return not solve(b, a % b) A, B = map(int, input().split()) print("Alice" if solve(A, B) else "Bob")