#abc058a. [abc058_a]ι⊥l
[abc058_a]ι⊥l
Problem Statement
Three poles stand evenly spaced along a line. Their heights are , and meters, from left to right. We will call the arrangement of the poles beautiful if the tops of the poles lie on the same line, that is, .
Determine whether the arrangement of the poles is beautiful.
Constraints
- , and are integers.
Input
Input is given from Standard Input in the following format:
Output
Print YES
if the arrangement of the poles is beautiful; print NO
otherwise.
Sample Input 1
2 4 6
Sample Output 1
YES
Since , this arrangement of poles is beautiful.
Sample Input 2
2 5 6
Sample Output 2
NO
Since , this arrangement of poles is not beautiful.
Sample Input 3
3 2 1
Sample Output 3
YES
Since , this arrangement of poles is beautiful.