DotsInCircle/KH9IZ
DotsInCircle/BarabanovNS
t1(x, y, r) = eval(input())t1(x0, y0, r) = eval(input())
2msg = 'YES'2incircle = 'YES'
3(dot_x, dot_y) = eval(input())3(x, y) = eval(input())
4while (dot_x, dot_y) != (0, 0):4while (x, y) != (0, 0):
5    if (dot_x - x) ** 2 + (dot_y - y) ** 2 > r ** 2:5    if (x - x0) ** 2 + (y - y0) ** 2 > r ** 2:
6        msg = 'NO'6        incircle = 'NO'
7    (dot_x, dot_y) = eval(input())7    (x, y) = eval(input())
8print(msg)8print(incircle)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op