English version is in beta. All contents of the site should be already translated (mostly using machine translation), and everything should work properly. However, if you find any problems, please contact me.
The problem statement has been automatically translated from Russian. If the statement is not clear, or you have any comments about it, please contact me. Anyway, I hope that someday I will fix the translation manually.

Archimedean Spiral

Dima recently joined the Research Institute of Flat Curves. As the name of this research institute implies, it is engaged in various studies in the field of plane curves. Recently, Dimin's boss George encountered a very interesting curve, which, as it turned out after some research, is known as the Archimedean spiral. The Archimedean spiral is a flat curve depicting the trajectory of point M, which moves uniformly along the OK ray with the origin in O, while the OK ray itself rotates uniformly around point O (see figure). In other words, the distance to the origin of coordinates p = OM linearly depends on the angle of rotation φ of the beam OK. In this case, the rotation of the beam OK by the same angle corresponds to the same increment of the distance p.

The motion of the point M can be set using a number of parameters:

• the initial angle of rotation α of the beam OK (measured in degrees counterclockwise relative to the positive direction of the OX axis);

• angular velocity of rotation ω of the beam OK (measured in degrees per unit of time);

• the initial distance R from point M to the origin (point O);

• the speed of movement V of the point M along the beam is OK.

If, by setting these parameters, you do not limit the time of movement of the point M, then you will get an infinite curve, which is quite difficult to explore. Therefore, Dima decided to limit himself to studying some part of this curve, the one that is obtained when the point M moves from the zero moment of time to the moment of time T. The task that Dima solves is to find a rectangle of minimal area with sides parallel to the coordinate axes in which it can be inscribed.

You need to write a program that will find the desired rectangle

Input data

The input file contains four integers: ω (1 ≤ ω ≤ 100), V (1 ≤ V ≤ 100), R (0 ≤ R ≤ 100) and T (1 ≤ T ≤ 1000). In this problem, it is assumed that the initial angle of rotation α is zero.

Output data

In the first line of the output file, print two real numbers — the coordinates of the lower—left corner of the rectangle you are looking for, and in the second line - the coordinates of the upper-right corner of the rectangle you are looking for.

The answer will be considered correct if the value of each of the coordinates differs from the true value by no more than 10-5.

Examples
Input data
60 10 0 18
Output data
-150.3028434716 -165.2754877824
180.0000000000 135.3362037333

This problem on informatics