100 #ABC044B. [ABC044B] 美しい文字列

[ABC044B] 美しい文字列

Score : 200200 points

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

  • 1w1001 \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.

abaccaba
Yes

a occurs four times, b occurs twice, c occurs twice and the other letters occur zero times.

hthth
No