In the movie Monty Python and the Holy Grail, a crucial scene revolves around the question, “What is the airspeed velocity of an unladen swallow?” For an undead ornithologist, perhaps the more important question is, “What is the swallowing capacity of a zombie swallow?”
To control a zombie swallow, you must control what it swallows. A zombie swallow that has just risen from its grave has an empty stomach, so you must feed it immediately. Each zombie swallow must swallow enough insects to meet its minimum energy requirement, but no more than its stomach can hold. In other words, given a set of insects to feed on, the swallow picks a subset whose total weight is at least its minimum requirement of $C_{min}$ micrograms and at most its stomach capacity of $C_{max}$ micrograms. If such a subset exists, the swallow survives.
For each swallow, decide whether it is possible to choose a subset of the available insects whose total weight lies between $C_{min}$ and $C_{max}$, inclusive. (The empty subset, with total weight $0$, is allowed.)
The first line contains $S$ ($S \le 30$), the number of swallows that need to feed. Each of the next $S$ lines contains the feeding information for one swallow:
Because of the nature of zombie swallows, $1 \le \dfrac{C_{max}}{C_{max} - C_{min}} \le 60000$ always holds.
For each swallow, print Sallow swallow swallows. if its feeding requirements can be met. Otherwise, if no combination of insects satisfies the requirements (the swallow would be underfed or overfed no matter what it chooses), print Sallow swallow wallows in dust. Print the answers in the same order as the input.