s=input() a=[i for i in s if not s.count(i)%2] print('YES' if len(s)==len(a) else 'NO')