input() x= list(map(int,input().split())) a=0 for e in x: a=a+e if a//3 ==1: print("B") else: print("A")