N,K = map(int,input().split()) A = "Alice" B = "Bob" if N % 2 == 1: print(A) else: print(B)