X, Y, K, P = map(int, input().split()) target_p = 0 if P == 1 else 1 Y_mod = Y % 2 T = (Y_mod - target_p) % 2 M = X + Y - K B_min = max(0, M - X) B_max = min(Y, M) if B_min == B_max: if (B_min % 2) == T: print("Alice") else: print("Bob") else: if (B_min % 2) == (B_max % 2): possible = {B_min % 2} else: possible = {0, 1} if T not in possible: print("Bob") else: if M % 2 == 1: print("Alice") else: if T == 0: print("Alice") else: print("Bob")