Код:
R1, R2 = (float(i) for i in input("R1 < R2 : ").split())
R1 *= R1
R2 *= R2
for k in range(1, 10):
x, y = (float(i) for i in input("x y > ").split())
z = x*x + y*y
if (x < 0 and y > 0 and z < R1) or (x > 0 and y < 0 and z > R1 and z < R2):
print("Hit the Target")
else:
print("Missed the Mark")