#abc240a. [abc240_a]Edge Checker

[abc240_a]Edge Checker

Problem Statement

In the figure shown in the image below, are the points numbered aa and bb directly connected by a line segment?

Constraints

  • 1leqaltbleq101 \\leq a \\lt b \\leq 10
  • aa and bb are integers.

Input

Input is given from Standard Input in the following format:

aa bb

Output

If the points numbered aa and bb are directly connected by a line segment, print Yes; otherwise, print No.
The judge is case-sensitive: be sure to print uppercase and lowercase letters correctly.


Sample Input 1

4 5

Sample Output 1

Yes

In the figure shown in the Problem Statement, the points numbered 44 and 55 are directly connected by a line segment.
Thus, Yes should be printed.


Sample Input 2

3 5

Sample Output 2

No

In the figure shown in the Problem Statement, the points numbered 33 and 55 are not directly connected by a line segment.
Thus, No should be printed.


Sample Input 3

1 10

Sample Output 3

Yes