Bawris, are wells or ponds in which the water may be reached by descending a set of steps. They may be covered and protected and are often of architectural significance.
Rajasthan has a history of maintaining bawris, but now they are of architectural significance hence ASI is interested to save a historic bawris from ACID rain. Hence they need to cover each and every bawri with a plank in order to prevent any direct damage to the bawri, so you are given a certain number of planks with different sizes (all rectangular), you are also given the sizes of all the bawris which are also rectangular in shape.
You have to tell whether it is possible to cover the bawri with the given plank while following these rules :
First line of the input contains an integer T denoting the number of test cases, which is followed by T number of lines.
Each line denotes one test case which has four space separated integers pX pY bX bY which are plank's length & width and bawri's length & width respectively.
For each test case, you have to output in one line either "Possible" if it is possible to cover the bawri with the plank otherwise print "Not Possible" (Quotes are for clarity)
Sample Test Case #1 :
It is impossible to cover up a bawri of size (4 X 7) with the given plank of size (2 X 7).
Sample Test Case #2 :
It is possible to cover up the bawri with the given plank.
Sample Test Case #3 :
As in the case #2