A - Air Conditioner Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

あなたは、室温が 30 度以上のとき、またそのときに限り、冷房の電源を入れます。

今の室温は X 度です。冷房の電源を入れますか?

制約

  • -40 \leq X \leq 40
  • X は整数である。

入力

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

X

出力

冷房の電源を入れるならば Yes、入れないならば No を出力せよ。


入力例 1

25

出力例 1

No

入力例 2

30

出力例 2

Yes

Score : 100 points

Problem Statement

You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above.

The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?

Constraints

  • -40 \leq X \leq 40
  • X is an integer.

Input

Input is given from Standard Input in the following format:

X

Output

Print Yes if you will turn on the air conditioner; print No otherwise.


Sample Input 1

25

Sample Output 1

No

Sample Input 2

30

Sample Output 2

Yes