Timosh enjoys inventing problems related to number theory. One day, he claimed to have come up with a difficult challenge. According to the challenge, you are given queries where for each query:
On the first line, the number of queries is given, q(1≤q≤105).
The next q lines contain the queries, a,b,x,y(1≤a,b,x,y≤109).
For each query, if such an interval can be found, print Yes; otherwise, print No.
3 2 3 5 3 2 3 6 3 2 3 7 3
Yes Yes No
Login to be able to submit.