#abc147a. [abc147_a]Blackjack
[abc147_a]Blackjack
Problem Statement
Given are three integers , , and .
If is greater than or equal to , print bust
; otherwise, print win
.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If is greater than or equal to , print bust
; otherwise, print win
.
Sample Input 1
5 7 9
Sample Output 1
win
, so print win
.
Sample Input 2
13 7 2
Sample Output 2
bust
, so print bust
.