n=int(input()) a=sorted(list(map(int,input().split()))) b=c=0 for i in a: if b<=c: b+=i else: c+=i print("Yes" if b==c else "No")