30001345 - 【06】扫码测温
Time Limit : 1 秒
Memory Limit : 128 MB
为了疫情防控,进入学校上课之前要扫码测温。 如果测量的温度n不在35到41之间则输出error(包括35和41)。如果测量的温度高于37C°则输出no,否则输出yes。
Input
0-100之间的浮点数。
Output
error; yes; no
Examples
Input
34.5
Output
error
Input
37
Output
yes
Input
37.1
Output
no