n = int(input()) ans = 1 for x in map(int, input().split()): if x > 1: ans = 0 else: ans = 1 - ans print('Alice' if ans == 0 else 'Bob')