#P1011. Parallelogram——平行四边形

Parallelogram——平行四边形

Statement

Given four numbers a,b,c,da, b, c, d, determine whether a parallelogram can be formed with sides of lengths a,b,c,da, b, c, d.

Input

The input contains a line of four integers representing a,b,c,da, b, c, d respectively, where (0<a,b,c,d1×1018)(0 < a, b, c, d \leqslant 1 \times 10^{18}) and they are separated by spaces.

Output

If a parallelogram can be formed, output Yes; otherwise, output No. The answer is not case-sensitive, and yEs and YEs are both considered as Yes.

Samples

1 1 4 5
No
1 2 1 2
Yes