atcoder#YAHOOPROCON2019QUALA. Anti-Adjacency

Anti-Adjacency

Score : 100100 points

Problem Statement

Determine if we can choose KK different integers between 11 and NN (inclusive) so that no two of them differ by 11.

Constraints

  • 1N,K1001\leq N,K\leq 100
  • NN and KK are integers.

Input

Input is given from Standard Input in the following format:

NN KK

Output

If we can choose KK integers as above, print YES; otherwise, print NO.

3 2
YES

We can choose 11 and 33.

5 5
NO
31 10
YES
10 90
NO