def solution(s): return s.lower().count('p') == s.lower().count('y')
def solution(s):return s.lower().count('p') is s.lower().count('y')