import sys input = sys.stdin.readline N,K=map(int,input().split()) if N%2==1: print("Alice") else: print("Bob")