9390: ABC206 —— A - Maxi-Buying
[Creator : ]
Description
The consumption tax rate in the Republic of AtCoder is $8$ percent.
An energy drink shop in this country sells one can of energy drink for $N$ yen (Japanese currency) without tax.
Including tax, it will be $\lfloor 1.08 \times N \rfloor$ yen, where $\lfloor x \rfloor$ denotes the greatest integer not exceeding $x$ for a real number $x$.
If this tax-included price is lower than the list price of $206$ yen, print `Yay!`; if it is equal to the list price, print `so-so`; if it is higher than the list price, print `:(`.
An energy drink shop in this country sells one can of energy drink for $N$ yen (Japanese currency) without tax.
Including tax, it will be $\lfloor 1.08 \times N \rfloor$ yen, where $\lfloor x \rfloor$ denotes the greatest integer not exceeding $x$ for a real number $x$.
If this tax-included price is lower than the list price of $206$ yen, print `Yay!`; if it is equal to the list price, print `so-so`; if it is higher than the list price, print `:(`.
Input
Input is given from Standard Input in the following format:
```
$N$
```
```
$N$
```
Output
Print the answer.
Constraints
- $1 \le N \le 300$
- $N$ is an integer.
- $N$ is an integer.
Sample 1 Input
180
Sample 1 Output
Yay!
For N=180, the tax-included price is ⌊180×1.08⌋=194 yen, which is lower than the list price of 206 yen.
Sample 2 Input
200
Sample 2 Output
:(
Sample 3 Input
191
Sample 3 Output
so-so
In this case, the tax-included price is exactly equal to the list price of 206 yen.