SunMoon is playing a game, he has to control the character to dodge the enemy’s attack. However, the enemy’s attack speed is so fast that as long as he is in the attack range, he will be hurt immediately. To prevent this situation, he will make every effort to avoid being in the enemy’s attack range.
You can think of the character as a rectangle that it’s four edges are parallel to the x-axis and y-axis. The enemy’s attack range is also a rectangle that it’s four edges are parallel to the x, y-axis. If the character and the enemy’s attack range has a cross (that is, the area of the intersection of the two rectangle is greater than 0), the character will be attacked, otherwise he will be safe.
Since playing the game is too complicated, SunMoon want to design an Al to help him play the game, please help him determine whether the role will be attacked or not.
There is an integer T in the first line (1 <= T <= 1000000), meaning that it will ask T times. Next, following T lines, each lines contain eight numbers Ax0, Ay0, Ax1, Ay1, Bx0, By0, Bx1, By1.
For the rectangle of SunMoon’s character, its left-down coordinate is (Ax0, Ay0) and right-top coordinate is (Ax1, Ay1). For the rectangle of enemy’s attack range, its left-down coordinate is (Bx0, By0) and right-top coordinate is (Bx1, By1)
It is guaranteed that Ax0<Ax1, Ay0<Ay1, Bx0<BX1, By0<By1, and Ax0, Ay0, Ax1, Ay1, Bx0, By0, Bx1, By1 are all in the range of int.
For every ask, please tell SunMoon weather his character will be attacked or not. If he will be attack, please output “BOY NEXT DOOR,DEEP DARK FANTASY” without the quotation marks. Otherwise, please output “Do you like WHAT YOU SEE,ASS WE CAN”, also without the quotation marks.