

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
ABC 国の消費税率は パーセントです。
ABC 国にはエナジードリンク屋さんがあります。ここでは、エナジードリンク 本を、税抜き 円で販売しています。
ここに消費税を加算した後の金額は 円となります。ただし、実数 に対し、 は 以下の最大の整数を表します。
この金額が定価の 円より安いなら Yay!
、定価と等しいなら so-so
、定価より高いなら :(
と出力して下さい。
制約
- は整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
180
出力例 1Copy
Yay!
であるとき、税込価格は 円ですが、この金額は定価の 円より安いです。
入力例 2Copy
200
出力例 2Copy
:(
入力例 3Copy
191
出力例 3Copy
so-so
この場合、税込価格がちょうど定価の 円と一致します。
Score : points
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 1Copy
180
Sample Output 1Copy
Yay!
For , the tax-included price is yen, which is lower than the list price of yen.
Sample Input 2Copy
200
Sample Output 2Copy
:(
Sample Input 3Copy
191
Sample Output 3Copy
so-so
In this case, the tax-included price is exactly equal to the list price of yen.