#D4602. Strawberry Cake

    ID: 3823 Type: Default 3000ms 134MiB

Strawberry Cake

Strawberry Cake

Sha, Nero, Eri, and Ko, who entered the University of Aizu Elementary School (Aizu University and Small), decided to participate in a programming contest called IPPC in order to play an active role as a competition programmer. However, IPPCs are required to participate in the contest as a team of three people, and it is not possible to form a team of four people. Therefore, they decided to form a team of two people and participate in a programming contest called IPOCH where two people can participate in one group.

Although the teams have been separated, their abilities are competing and they are good practice partners for each other.

One day their coach bought a whole cake to put in. They decided to eat it at Sha's house. However, when I got home and opened the box, the cake was deformed, and when viewed from above, it looked like a convex polygon instead of a circle. It seems that it was bad to have Nero carry it. There is a strawberry on top of the cake. For the time being, it was decided to cut this cake with a knife in half along a straight line through the strawberries in order to divide it into two teams. It is against their aesthetic sense to take the strawberries first before cutting the cake.

Your job is to divide a convex polygon K given on a two-dimensional plane by a straight line L passing through the origin (0, 0), and then divide the straight line L so that the areas of the two convex polygons created by the division are equal. To determine. If there are more than one, one of them will do.

Constraints

  • All inputs are integers
  • 3 ≤ N ≤ 20
  • -100 ≤ xi ≤ 100 (1 ≤ i ≤ N)
  • -100 ≤ yi ≤ 100 (1 ≤ i ≤ N)
  • The number of test cases does not exceed 1,000.

Input

The input consists of multiple test cases. Each test case follows the format below.

N x1 y1 x2 y2 ... xN yN

N is the number of vertices of the given convex polygon K. The points (xi, yi) (1 ≤ i ≤ N) are all the coordinates of the vertices that make up the convex polygon K and are different from each other. These are given in counterclockwise order. Also, a point on any side of the convex polygon K has a distance of 1 or more from the origin, and the convex polygon K always contains the origin. The end of input is indicated by one line containing one 0. Note that the three different points given by the input, including the origin, can be collinear.

Output

Output the point A (Ax, Ay) on the straight line L in the following format. However, the distance between point A and the origin must be 1 or more.

Ax Ay

When the convex polygon K is divided by the origin and a straight line passing through this point A, the difference in area between the two convex polygons must be less than 10-5. I want the coordinates of point A to be output 15 digits after the decimal point.

Example

Input

4 -100 -100 100 -100 100 100 -100 100 4 -99 -100 100 -100 100 100 -99 100 4 -100 -99 100 -99 100 100 -100 100 14 -99 -70 -92 -79 10 -98 37 -100 62 -95 77 -69 88 -47 92 -10 96 28 100 91 42 92 -62 92 -88 91 -98 64 0

Output

100.000000000000000 0.000000000000000 100.000000000000000 0.000000000000000 0.000000000000000 100.000000000000000 -96.983291994836122 66.745111613942484

inputFormat

inputs are integers

  • 3 ≤ N ≤ 20
  • -100 ≤ xi ≤ 100 (1 ≤ i ≤ N)
  • -100 ≤ yi ≤ 100 (1 ≤ i ≤ N)
  • The number of test cases does not exceed 1,000.

Input

The input consists of multiple test cases. Each test case follows the format below.

N x1 y1 x2 y2 ... xN yN

N is the number of vertices of the given convex polygon K. The points (xi, yi) (1 ≤ i ≤ N) are all the coordinates of the vertices that make up the convex polygon K and are different from each other. These are given in counterclockwise order. Also, a point on any side of the convex polygon K has a distance of 1 or more from the origin, and the convex polygon K always contains the origin. The end of input is indicated by one line containing one 0. Note that the three different points given by the input, including the origin, can be collinear.

outputFormat

Output

Output the point A (Ax, Ay) on the straight line L in the following format. However, the distance between point A and the origin must be 1 or more.

Ax Ay

When the convex polygon K is divided by the origin and a straight line passing through this point A, the difference in area between the two convex polygons must be less than 10-5. I want the coordinates of point A to be output 15 digits after the decimal point.

Example

Input

4 -100 -100 100 -100 100 100 -100 100 4 -99 -100 100 -100 100 100 -99 100 4 -100 -99 100 -99 100 100 -100 100 14 -99 -70 -92 -79 10 -98 37 -100 62 -95 77 -69 88 -47 92 -10 96 28 100 91 42 92 -62 92 -88 91 -98 64 0

Output

100.000000000000000 0.000000000000000 100.000000000000000 0.000000000000000 0.000000000000000 100.000000000000000 -96.983291994836122 66.745111613942484

样例

4
-100 -100
100 -100
100 100
-100 100
4
-99 -100
100 -100
100 100
-99 100
4
-100 -99
100 -99
100 100
-100 100
14
-99 -70
-92 -79
10 -98
37 -100
62 -95
77 -69
88 -47
92 -10
96 28
100 91
42 92
-62 92
-88 91
-98 64
0
100.000000000000000 0.000000000000000

100.000000000000000 0.000000000000000 0.000000000000000 100.000000000000000 -96.983291994836122 66.745111613942484

</p>