On a vast, flat green meadow, there are several golden disks in the shape of perfect circles from ancient times. According to legend, if one chants a spell, the area covered by the disks will turn into flames, fending off enemy attacks. When the enemy comes, you can hide in a place completely surrounded by disks, yet not on the disks, thus isolated from the outside world by the flames.
Given the positions and sizes of the disks, determine whether such a hiding place exists.
The first line contains an integer $$$N$$$, representing the number of disks. In the following $$$N$$$ lines, the $$$i^{\texttt{th}}$$$ line contains three integers that describe disk $$$i$$$: the x-coordinate $$$x_i$$$, the y-coordinate $$$y_i$$$ of its center, and its radius $$$r_i$$$.
A single integer, $$$1$$$ if such a place exists, or $$$0$$$ otherwise.
Limits
4 -6 0 8 -4 10 7 4 4 6 8 14 2
0
5 4 -2 5 -4 -2 5 -8 8 8 4 6 5 -6 4 2
1
3 420 580 230 200 200 200 600 200 210
0
Sample Explanation 1
In this sample, there isn't any place that is completely surrounded by disks, yet not on the disks.
Sample Explanation 2
In this sample, $$$(-0.5, 3)$$$ is one of the places we can hide. It is surrounded by disks, yet not on the disks. Note that although all the inputs are integers, the hiding place does not necessarily have to be an integer point.
Sample Explanation 3
In this sample, there isn't any place that is completely surrounded by disks, yet not on the disks.
| Name |
|---|


