100 atcoder#ABC044B. [ABC044B] 美しい文字列
[ABC044B] 美しい文字列
Score : points
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.
abaccaba
Yes
a
occurs four times, b
occurs twice, c
occurs twice and the other letters occur zero times.
hthth
No