import math
a,b,c=map(float,input().split())
if math.fabs(a-b-c)<=10**-9:
    print("YES")
else:
    print("NO")