A - Maxi-Buying Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

ABC 国の消費税率は 88 パーセントです。
ABC 国にはエナジードリンク屋さんがあります。ここでは、エナジードリンク 11 本を、税抜き NN 円で販売しています。
ここに消費税を加算した後の金額は 1.08×N\lfloor 1.08 \times N \rfloor 円となります。ただし、実数 xx に対し、x\lfloor x \rfloorxx 以下の最大の整数を表します。
この金額が定価の 206206 円より安いなら Yay! 、定価と等しいなら so-so 、定価より高いなら :( と出力して下さい。

制約

  • 1N3001 \le N \le 300
  • NN は整数

入力

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

NN

出力

答えを出力せよ。


入力例 1Copy

Copy
180

出力例 1Copy

Copy
Yay!

N=180N=180 であるとき、税込価格は 180×1.08=194\lfloor 180 \times 1.08 \rfloor = 194 円ですが、この金額は定価の 206206 円より安いです。


入力例 2Copy

Copy
200

出力例 2Copy

Copy
:(

入力例 3Copy

Copy
191

出力例 3Copy

Copy
so-so

この場合、税込価格がちょうど定価の 206206 円と一致します。

Score : 100100 points

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 1Copy

Copy
180

Sample Output 1Copy

Copy
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 2Copy

Copy
200

Sample Output 2Copy

Copy
:(

Sample Input 3Copy

Copy
191

Sample Output 3Copy

Copy
so-so

In this case, the tax-included price is exactly equal to the list price of 206206 yen.



2025-04-03 (Thu)
07:58:58 +00:00