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