Given a string S consisting only of lowercase letters check if the string has all characters appearing even times
input : abaccaba
Output : Yes
Explanation: ‘a’ occurs four times, ‘b’ occurs twice, ‘c’ occurs twice and the other letters occur zero times.