#abc044b. [abc044_b]Beautiful Strings

[abc044_b]Beautiful Strings

Problem Statement

Let ww be a string consisting of lowercase letters. We will call ww beautiful if the following condition is satisfied:

  • Each lowercase letter of the English alphabet occurs even number of times in ww.

You are given the string ww. Determine if ww is beautiful.

Constraints

  • 1leqwleq1001 \\leq |w| \\leq 100
  • ww consists of lowercase letters (a-z).

Input

The input is given from Standard Input in the following format:

ww

Output

Print Yes if ww 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