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