Bertown is under siege! The attackers have blocked all the ways out and their cannon is bombarding the city. Fortunately, Berland intelligence managed to intercept the enemies' shooting plan. Let's introduce the Cartesian system of coordinates, the origin of which coincides with the cannon's position, the Ox axis is directed rightwards in the city's direction, the Oy axis is directed upwards (to the sky). The cannon will make n more shots. The cannon balls' initial speeds are the same in all the shots and are equal to V, so that every shot is characterized by only one number alphai which represents the angle at which the cannon fires. Due to the cannon's technical peculiarities this angle does not exceed 45 angles (π/4). We disregard the cannon sizes and consider the firing made from the point (0,0).
The balls fly according to the known physical laws of a body thrown towards the horizon at an angle:
vx(t)=V·cos(alpha)vy(t)=V·sin(alpha)—g·tx(t)=V·cos(alpha)·ty(t)=V·sin(alpha)·t—g·t2/2 Think of the acceleration of gravity g as equal to 9.8.
Bertown defends m walls. The i-th wall is represented as a vertical segment (xi,0)-(xi,yi). When a ball hits a wall, it gets stuck in it and doesn't fly on. If a ball doesn't hit any wall it falls on the ground (y=0) and stops. If the ball exactly hits the point (xi,yi), it is considered stuck.
Your task is to find for each ball the coordinates of the point where it will be located in the end.
Output
Print
n lines containing two real numbers each − calculate for every ball the coordinates of its landing point. Your answer should have the relative or absolute error less than
10-4.
Examples
Output
5.000000000 2.549499369
4.000000000 0.378324889
Output
10.204081436 0.000000000
4.000000000 0.378324889