n = list(input().split()) if len(n) % 2 == 1: print("NO") if n.count(n[-1]) % 2 == 0: print("YES") if n.count(n[-1]) % 2 == 1: print("NO")