Given four integer values, determine if one of them is equal to the mean of other two values.
Remember that the mean of two values $a$ and $b$ is $\frac{a + b}{2}$.
Output
If there exists one value that is equal to the mean of the other two values, then print "Yes" without quotes, otherwise print "No" without quotes.