#abc147a. [abc147_a]Blackjack

[abc147_a]Blackjack

Problem Statement

Given are three integers A1A_1, A2A_2, and A3A_3.

If A1+A2+A3A_1+A_2+A_3 is greater than or equal to 2222, print bust; otherwise, print win.

Constraints

  • 1leqAileq13(i=1,2,3)1 \\leq A_i \\leq 13 \\ \\ (i=1,2,3)
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

A1A_1 A2A_2 A3A_3

Output

If A1+A2+A3A_1+A_2+A_3 is greater than or equal to 2222, print bust; otherwise, print win.


Sample Input 1

5 7 9

Sample Output 1

win

5+7+9=215+7+9=21, so print win.


Sample Input 2

13 7 2

Sample Output 2

bust

13+7+2=2213+7+2=22, so print bust.