AT_abc385_a [ABC385A] Equally
Description
You are given three integers $ A,B,C $ . Determine whether it is possible to divide these three integers into two or more groups so that these groups have equal sums.
Input Format
The input is given from Standard Input in the following format:
> $ A $ $ B $ $ C $
Output Format
If it is possible to divide $ A,B,C $ into two or more groups with equal sums, print `Yes`; otherwise, print `No`.
Explanation/Hint
### Sample Explanation 1
For example, by dividing into two groups $ (3,5) $ and $ (8) $ , each group can have the sum $ 8 $ .
### Sample Explanation 2
By dividing into three groups $ (2),(2),(2) $ , each group can have the sum $ 2 $ .
### Sample Explanation 3
No matter how you divide them into two or more groups, it is not possible to make the sums equal.
### Constraints
- $ 1 \leq A,B,C \leq 1000 $
- All input values are integers.