#abc061a. [abc061_a]Between Two Integers

[abc061_a]Between Two Integers

Problem Statement

You are given three integers AA, BB and CC. Determine whether CC is not less than AA and not greater than BB.

Constraints

  • \-100A,B,C100\-100≤A,B,C≤100
  • AA, BB and CC are all integers.

Input

Input is given from Standard Input in the following format:

AA BB CC

Output

If the condition is satisfied, print Yes; otherwise, print No.


Sample Input 1

1 3 2

Sample Output 1

Yes

C=2C=2 is not less than A=1A=1 and not greater than B=3B=3, and thus the output should be Yes.


Sample Input 2

6 5 4

Sample Output 2

No

C=4C=4 is less than A=6A=6, and thus the output should be No.


Sample Input 3

2 2 2

Sample Output 3

Yes