100 atcoder#ABC147A. [ABC147A] Blackjack
[ABC147A] Blackjack
Score : points
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
.
5 7 9
win
, so print win
.
13 7 2
bust
, so print bust
.