#abc246b. [abc246_b]Get Closer
[abc246_b]Get Closer
Problem Statement
From the point in a two-dimensional plane, let us move the distance of toward the point . Find our coordinates after the move.
Here, after moving the distance of from a point to a point ( length of the segment ), we are at the point on the segment whose distance from is .
The Constraints guarantee that the distance between the points and is at least .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Let be our coordinates after the move. Print and in this order, separated by a space.
Your output is considered correct when, for each printed value, the absolute or relative error from the judge's answer is at most .
Sample Input 1
3 4
Sample Output 1
0.600000000000 0.800000000000
Printing 0.5999999999 0.8000000001
, for example, would also be accepted.
Sample Input 2
1 0
Sample Output 2
1.000000000000 0.000000000000
We may arrive at .
Sample Input 3
246 402
Sample Output 3
0.521964870245 0.852966983083