← Back to List

17094번: Serious Problem ↗

Solutions

Python 3
121 B | 121 chars
a=input()
s=input()
e,E=s.count('e'),s.count('2')
if e==E:
    print("yee")
elif e>E:
    print("e")
else:
    print("2")