Given two lines, with equations , and
, determine the point of intersection.
Constraints
Input Specfication
The first line will contain space-separated integers .
Output Specification
If the point of intersection does not exist, output no POI
. If there is more than one point of intersection, output multiple POIs
. Otherwise, output the x-coordinate of the point of intersection, followed by the y-coordinate. It is guaranteed the coordinates are integers.
Sample Input
1 0 2 3
Sample Output
-3 -3
Comments