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