Anchored Balloon
A balloon placed on the ground is connected to one or more anchors on the ground with ropes. Each rope is long enough to connect the balloon and the anchor. No two ropes cross each other. Figure 1 shows such a situation.
Figure 1: A balloon and ropes on the ground
Now the balloon takes off, and your task is to find how high the balloon can go up with keeping the rope connections. The positions of the anchors are fixed. The lengths of the ropes and the positions of the anchors are given. You may assume that these ropes have no weight and thus can be straightened up when pulled to whichever directions. Figure 2 shows the highest position of the balloon for the situation shown in Figure 1.
Figure 2: The highest position of the balloon
Input
The input consists of multiple datasets, each in the following format.
n
x_1 y_1 l_1
...
x_n y_n l_n
The first line of a dataset contains an integer n (1 ≤ n ≤ 10) representing the number of the ropes. Each of the following n lines contains three integers, x_i, y_i, and l_i, separated by a single space. P_i = (x_i, y_i) represents the position of the anchor connecting the i-th rope, and l_i represents the length of the rope. You can assume that −100 ≤ x_i ≤ 100, −100 ≤ y_i ≤ 100, and 1 ≤ l_i ≤ 300. The balloon is initially placed at (0, 0) on the ground. You can ignore the size of the balloon and the anchors.
You can assume that P_i and P_j represent different positions if i ≠ j. You can also assume that the distance between P_i and (0, 0) is less than or equal to l_i−1. This means that the balloon can go up at least 1 unit high.
Figures 1 and 2 correspond to the first dataset of Sample Input below.
The end of the input is indicated by a line containing a zero.
Output
For each dataset, output a single line containing the maximum height that the balloon can go up. The error of the value should be no greater than 0.00001. No extra characters should appear in the output.