Hares and Foxes 

The Antique Comedians of Malidinesia play an interesting comedy where many animals occur. Because they want their plays to be as true as possible, a specialist studies the behaviour of various animals. Recently, he is interested in a binary dynamic ecological system hares-foxes (SHF). As a part of this project, you are asked to design and implement intelligent automatic target evaluation simulator (IATES) for this system. The behaviour of the SHF follows so called standard model, described by the following set of difference equations.


\begin{eqnarray*}h_{y+1} & = & a.h_y - b.f_y \\
f_{y+1} & = & c.f_y + d.h_y
\end{eqnarray*}


where hy resp. fy represent the difference of the number of hares resp. foxes in yeary and the reference count determined at the beginning of the experiment. The units of hy and fy are unknown. Therefore, hy and fy are to be treated as real numbers. Your task is to write a program to determine the long term evolution of SHF.

Input 

The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. Each case consists of six real numbers a, b, c, d, h1998 and f1998, written in this order on three lines, two numbers per line, separated by one or more spaces. The numbers are given in the classical format, i.e. optional sign, sequence of digits, optional dot and optional sequence of digits. The text form of a number does not exceed 10 characters. Each case is followed by one empty line.

Output 

For each case, print one of the following sentences:

Sample Input 

2
2 0.5
0.5 0.6
2 3

0.1 1 
2 0.1
1 1

Sample Output 

Both hares and foxes will overgrow.
Hares will die out while foxes will overgrow.



Miguel A. Revilla
2000-02-15