#abc188a. [abc188_a]Three-Point Shot

[abc188_a]Three-Point Shot

Problem Statement

A basketball game is being played, and the score is now XX-YY. Here, it is guaranteed that XneqYX \\neq Y.
Can the team which is behind turn the tables with a successful three-point goal?
In other words, if the team which is behind earns three points, will its score become strictly greater than that of the other team?

Constraints

  • 0leXle1000 \\le X \\le 100
  • 0leYle1000 \\le Y \\le 100
  • XneqYX \\neq Y
  • XX and YY are integers.

Input

Input is given from Standard Input in the following format:

XX YY

Output

If the team which is behind can turn the tables with a successful three-point goal, print Yes; otherwise, print No.


Sample Input 1

3 5

Sample Output 1

Yes

The team with 33 points is behind.
After a successful 33-point goal, it will have 66 points, which is greater than that of the other team - 55.
Thus, we should print Yes.


Sample Input 2

16 2

Sample Output 2

No

The gap is too much. The team which is behind cannot overtake the other by getting 33 points.


Sample Input 3

12 15

Sample Output 3

No

A 33-point goal will tie the score but not turn the tables.