A. Parallelogram——平行四边形

    Type: Default 1000ms 256MiB

Parallelogram——平行四边形

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

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