#abc206a. A - Maxi-Buying

A - Maxi-Buying

Score : 100100 points

问题描述

在AtCoder共和国,消费税率为8%。 该国的一家能量饮料店以不含税的N日元(日本货币)出售一罐能量饮料。 含税价格为1.08×N\lfloor 1.08 \times N \rfloor日元,其中对于实数xxx\lfloor x \rfloor表示不超过xx的最大整数。 如果这个含税价格低于标价206日元,则输出Yay!;如果等于标价,则输出so-so;如果高于标价,则输出:(

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

The consumption tax rate in the Republic of AtCoder is 88 percent.
An energy drink shop in this country sells one can of energy drink for NN yen (Japanese currency) without tax.
Including tax, it will be 1.08×N\lfloor 1.08 \times N \rfloor yen, where x\lfloor x \rfloor denotes the greatest integer not exceeding xx for a real number xx.
If this tax-included price is lower than the list price of 206206 yen, print Yay!; if it is equal to the list price, print so-so; if it is higher than the list price, print :(.

Constraints

  • 1N3001 \le N \le 300
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.

Sample Input 1

180

Sample Output 1

Yay!

For N=180N=180, the tax-included price is 180×1.08=194\lfloor 180 \times 1.08 \rfloor = 194 yen, which is lower than the list price of 206206 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 206206 yen.

update @ 2024/3/10 09:19:05

}