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