#abc206a. A - Maxi-Buying
A - Maxi-Buying
Score : points
问题描述
在AtCoder共和国,消费税率为8%。
该国的一家能量饮料店以不含税的N日元(日本货币)出售一罐能量饮料。
含税价格为日元,其中对于实数,表示不超过的最大整数。
如果这个含税价格低于标价206日元,则输出Yay!
;如果等于标价,则输出so-so
;如果高于标价,则输出:(
。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
The consumption tax rate in the Republic of AtCoder is percent.
An energy drink shop in this country sells one can of energy drink for yen (Japanese currency) without tax.
Including tax, it will be yen, where denotes the greatest integer not exceeding for a real number .
If this tax-included price is lower than the list price of yen, print Yay!
; if it is equal to the list price, print so-so
; if it is higher than the list price, print :(
.
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
180
Sample Output 1
Yay!
For , the tax-included price is yen, which is lower than the list price of yen.
Sample Input 2
200
Sample Output 2
:(
Sample Input 3
191
Sample Output 3
so-so
In this case, the tax-included price is exactly equal to the list price of yen.
update @ 2024/3/10 09:19:05