100 #ABC112C. [ABC112C] Pyramid

[ABC112C] Pyramid

Score: 300300 points

Problem Statement

In the Ancient Kingdom of Snuke, there was a pyramid to strengthen the authority of Takahashi, the president of AtCoder Inc. The pyramid had center coordinates (CX,CY)(C_X, C_Y) and height HH. The altitude of coordinates (X,Y)(X, Y) is max(HXCXYCY,0)max(H - |X - C_X| - |Y - C_Y|, 0).

Aoki, an explorer, conducted a survey to identify the center coordinates and height of this pyramid. As a result, he obtained the following information:

  • CX,CYC_X, C_Y was integers between 00 and 100100 (inclusive), and HH was an integer not less than 11.
  • Additionally, he obtained NN pieces of information. The ii-th of them is: "the altitude of point (xi,yi)(x_i, y_i) is hih_i."

This was enough to identify the center coordinates and the height of the pyramid. Find these values with the clues above.

Constraints

  • NN is an integer between 11 and 100100 (inclusive).
  • xix_i and yiy_i are integers between 00 and 100100 (inclusive).
  • hih_i is an integer between 00 and 10910^9 (inclusive).
  • The NN coordinates $(x_1, y_1), (x_2, y_2), (x_3, y_3), ..., (x_N, y_N)$ are all different.
  • The center coordinates and the height of the pyramid can be uniquely identified.

Input

Input is given from Standard Input in the following format:

NN

x1x_1 y1y_1 h1h_1

x2x_2 y2y_2 h2h_2

x3x_3 y3y_3 h3h_3

::

xNx_N yNy_N hNh_N

Output

Print values CX,CYC_X, C_Y and HH representing the center coordinates and the height of the pyramid in one line, with spaces in between.

4
2 3 5
2 1 5
1 2 5
3 2 5
2 2 6

In this case, the center coordinates and the height can be identified as (2,2)(2, 2) and 66.

2
0 0 100
1 1 98
0 0 100

In this case, the center coordinates and the height can be identified as (0,0)(0, 0) and 100100. Note that CXC_X and CYC_Y are known to be integers between 00 and 100100.

3
99 1 191
100 1 192
99 0 192
100 0 193

In this case, the center coordinates and the height can be identified as (100,0)(100, 0) and 193193.