101740: [AtCoder]ABC174 A - Air Conditioner

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:1 Solved:0

Description

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

Input

题意翻译

输入一个数 $n$,如果 $n\ge 30$,输出 `Yes`,否则输出 `No`,末尾记得换行。 translate by @[Jasoncwx](https://www.luogu.com.cn/user/592684)。

加入题单

上一题 下一题 算法标签: