def solve(testcase):
    a, b, r = MI()

    print("Alice" if a >= 2 * r and b >= 2 * r else "Bob")

for testcase in range(1):
    solve(testcase)