#abc201a. [abc201_a]Tiny Arithmetic Sequence
[abc201_a]Tiny Arithmetic Sequence
Problem Statement
You are given a sequence of three numbers: .
Is it possible to rearrange the elements of into an arithmetic sequence?
In other words, is it possible to rearrange the elements of so that ?
Constrains
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If it is possible to rearrange the elements of into an arithmetic sequence, print Yes
; otherwise, print No
.
Sample Input 1
5 1 3
Sample Output 1
Yes
We can rearrange them into an arithmetic sequence by, for example, making it .
Sample Input 2
1 4 3
Sample Output 2
No
There is no way to rearrange them into an arithmetic sequence.
Sample Input 3
5 5 5
Sample Output 3
Yes
All elements of may be equal, or may be an arithmetic sequence already.