Franklin Richards is a very curious and playful boy who, unlike other children, has extraordinary powers. Franklin has been watching YouTube videos about setting up domino tiles and how they fall one after the other. Inspired, Franklin decided to do something similar and created a bag from which he can draw any number of one-dimensional domino tiles of any height with infinitesimal width. He also created a one-dimensional play table.
Franklin drew $$$n$$$ domino tiles numbered from $$$1$$$ to $$$n$$$ and placed them vertically on the table (it seems impossible for them to balance, but since Franklin has powers beyond your imagination, this is possible). It is known that there is always an integer distance $$$x_i$$$ greater than $$$0$$$ between tile $$$i$$$ and tile $$$i - 1$$$, for each $$$i \gt 1$$$. After setting up all the tiles, Franklin thought that if he pushed one tile, it would trigger all the tiles to fall. Determine if Franklin is right. It is known that a domino tile $$$a$$$ can knock down another tile $$$b$$$ if the height $$$h_a$$$ is greater than the distance between $$$a$$$ and $$$b$$$ and tile $$$a$$$ falls towards $$$b$$$.
The input consists of multiple test cases. The first line contains an integer $$$t$$$ $$$(1 \le t \le 10^4)$$$, the number of test cases. Each test case is described as follows:
First line: An integer $$$n$$$ $$$(2 \le n \le 10^5)$$$, the number of domino tiles.
Second line: $$$n$$$ integers $$$h_1, h_2, \ldots, h_n$$$ $$$(1 \le h_i \le 10^9)$$$, where $$$h_i$$$ represents the height of tile $$$i$$$.
Third line: $$$(n-1)$$$ integers $$$x_2, x_3, \ldots, x_n$$$ $$$(1 \le x_i \le 10^9)$$$, where $$$x_i$$$ is the distance between tile $$$i$$$ and tile $$$i-1$$$.
The sum of $$$n$$$ in all test cases does not exceed $$$10^5$$$.
For each test case, print the word "habibi" if pushing any tile can cause all the others to fall, or "which" if it is not possible.
4210 1010310 20 309 10330 5 1010 10310 5 3010 10
which habibi habibi habibi