n = int(input()) x = 0 for a in list(map(int, input().split()))[1::2]: x ^= a print('Alice' if x else 'Bob')