n=input() if n.count('A')>n.count('B'): print('A') elif n.count('A')<n.count('B'): print('B') else: print('E')