Everything is flat in Flatland. The planets are round but flat; that is, each is a disc lying in a plane.
You are given the centers and radii of three planets in Flatland. Find the point from which all three planets are seen at the same angle — that is, they have the same apparent size measured as angular diameter. Call such a point an isoobservation point. There can be at most two such points, and you must report the one that gives the largest angular diameter of the planets.
To simplify the problem you may assume that:
The input consists of several cases, each on a single line. Each line has nine numbers, three for each disc. Each triple gives the x and y coordinates of a disc center and the radius r of that disc.
The input is terminated by a line of nine zeros, which must not be processed.
For each case, print the x and y coordinates of the isoobservation point described above, each rounded to two decimal places and separated by a single space. If no such point exists, print No solution.