#abc044b. [abc044_b]Beautiful Strings
[abc044_b]Beautiful Strings
Problem Statement
Let be a string consisting of lowercase letters. We will call beautiful if the following condition is satisfied:
- Each lowercase letter of the English alphabet occurs even number of times in .
You are given the string . Determine if is beautiful.
Constraints
- consists of lowercase letters (
a
-z
).
Input
The input is given from Standard Input in the following format:
Output
Print Yes
if is beautiful. Print No
otherwise.
Sample Input 1
abaccaba
Sample Output 1
Yes
a
occurs four times, b
occurs twice, c
occurs twice and the other letters occur zero times.
Sample Input 2
hthth
Sample Output 2
No