A - Between Two Integers 解説 /

実行時間制限: 2 sec / メモリ制限: 256 MB

配点 : 100

問題文

3 つの整数 A,B,C が与えられます。
整数 CA 以上 かつ B 以下であるかを判定してください。

制約

  • -100≦A,B,C≦100
  • A,B,C は全て整数

入力

入力は以下の形式で標準入力から与えられる。

A B C

出力

条件を満たす場合はYes、そうでない場合はNoを出力せよ。


入力例 1

1 3 2

出力例 1

Yes

整数 C=2A=1 以上 かつ、B=3 以下 であるためYesと出力します。


入力例 2

6 5 4

出力例 2

No

整数 C=4A=6 以上ではないためNoと出力します。


入力例 3

2 2 2

出力例 3

Yes

Score : 100 points

Problem Statement

You are given three integers A, B and C. Determine whether C is not less than A and not greater than B.

Constraints

  • -100≤A,B,C≤100
  • A, B and C are all integers.

Input

Input is given from Standard Input in the following format:

A B C

Output

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


Sample Input 1

1 3 2

Sample Output 1

Yes

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


Sample Input 2

6 5 4

Sample Output 2

No

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


Sample Input 3

2 2 2

Sample Output 3

Yes