A+B=C?
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 256 megabytes
Petryk finds solving simple problems like finding the sum of two numbers quite dull. To challenge him, his programming teacher has given him a more interesting task:
You are provided with three integers: , , and . Your task is to determine if any one of these numbers is equal to the sum of the other two.
Input
The input consists of a single line with three integers , , and ().
Output
Print «Yes
» if there is such a number; otherwise, print «No
» (without quotes).
Examples
Input #1
Answer #1
Input #2
Answer #2
Input #3
Answer #3
Submissions 541
Acceptance rate 44%