count方法

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