class Solution {
    boolean solution(String s) {
        int p = 0; int y = 0;
        
        for(int i=0; i<s.length(); i++) {
            String temp = String.valueOf(s.charAt(i)).toLowerCase();
            if(temp.equals("p")) { p++; }
            else if(temp.equals("y")) { y++; }
        }

        return p==y ? true : false;
    }
}