x, y, k, p = map(int, input().split()) z = x+y-k if z%2: if p == 1: print("Bob" if not x%2 and x <= z//2 or y%2 and y <= z//2 else "Alice") else: print("Bob" if x%2 and x <= z//2 or not y%2 and y <= z//2 else "Alice") else: if p == 1: print("Alice" if not x%2 and x <= z//2 or not y%2 and y <= z//2 else "Bob") else: print("Alice" if x%2 and x <= z//2 or y%2 and y <= z//2 else "Bob")