#abc206a. [abc206_a]Maxi-Buying

[abc206_a]Maxi-Buying

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 lfloor1.08timesNrfloor\\lfloor 1.08 \\times N \\rfloor yen, where lfloorxrfloor\\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

  • 1leNle3001 \\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 lfloor180times1.08rfloor=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.