def solve(testcase):
    eps = 1e-8
    a, b, c = map(float, input().split())

    print("YES" if abs(a - b - c) < eps else "NO")

for testcase in range(1):
    solve(testcase)