
“Never” if they never meet.
“Point” if they meet at a point.
“Intersect” if they intersect each other.
For A = 1, B = 3, C = 5, D = 10

They will never meet as their paths have no common points.
The first line contains a single integer ‘T’ denoting the number of test cases to be run. Then the test cases follow.
The first line of each test case contains four space-separated integers representing A, B, C, D.
For each test case, print a string according to the above conditions.
Output for each test case will be printed in a separate line.
You are not required to print anything, it has already been taken care of. Just implement the function.
1 <= T <= 10^4
-10^6 <= A, B, C, D <= 10^9
Time Limit: 1 sec.
Consider the paths are in the x-axis. Let us modify the given input such that the starting points of both the person are smaller than their corresponding ending points.
Now if the minimum value of the ending points is greater than the maximum value of starting points, then the paths will be intersecting.
Algorithm: