#TENKA12017E. CARtesian Coodinate

CARtesian Coodinate

Score : 800800 points

Problem Statement

There are NN lines in the xyxy-plane. The ii-th line is represented by Aix+Biy=CiA_ix+B_iy=C_i. Any two lines among the N+2N+2 lines, the above NN lines plus the xx-axis and yy-axis, cross each other at exactly one point.

For each pair 1i<jN1 \leq i < j \leq N, there is a car at the cross point of the ii-th and jj-th lines. Even where three or more lines intersect at a point, a car is individually placed for each pair of lines. That is, there will be k(k1)/2k(k-1)/2 cars placed at the intersection of kk lines.

Those cars are already very old, and can only be moved parallel to the xx-axis or yy-axis.

Takahashi will hold an exhibition of antique cars at a place on the xyxy-plane. In order to avoid damaging the half-broken cars too much, he will select the place of the exhibition so that the total distance covered will be minimized when all the cars are moved to the place. If such a place is not uniquely determined, among the places that satisfy the condition above, the place with the minimum xx-coordinate will be selected. If the place is still not uniquely determined, among the places that satisfy the two conditions above, the place with the minimum yy-coordinate will be selected.

Find the place of the exhibition that will be selected.

Constraints

  • 2N4×1042 \leq N \leq 4 \times 10^4
  • 1Ai,Bi104(1iN)1 \leq |A_i|,|B_i| \leq 10^4(1 \leq i \leq N)
  • 0Ci104(1iN)0 \leq |C_i| \leq 10^4(1 \leq i \leq N)
  • No two given lines are parallel.
  • All input values are integers.

Inputs

Input is given from Standard Input in the following format:

NN

A1A_1 B1B_1 C1C_1

:

ANA_N BNB_N CNC_N

Outputs

Print the xx-coordinate and yy-coordinate of the place of the exhibition that will be selected, in this order, with a space in between. The output will be judged as correct when the absolute or relative error is at most 10910^{-9}.

3
1 1 1
2 -1 2
-1 2 2
1.000000000000000 1.000000000000000

There is a car at each place shown by a blue circle in the figure. The place to be selected is shown by a purple circle.

4
1 1 2
1 -1 0
3 -1 -2
1 -3 4
-1.000000000000000 -1.000000000000000
7
1 7 8
-2 4 9
3 -8 -5
9 2 -14
6 7 5
-8 -9 3
3 8 10
-1.722222222222222 1.325000000000000