Answer
$Code$
Work Step by Step
$Code:$
x = float(input("Enter a point with two coordinates: "))
y = float(input("Enter a point with two coordinates: "))
withInCircle = (pow(pow(x, 2) + pow(y, 2), 0.5) <= 10)
print("Point ( {} , {} ) is {} circle ".format(x,y,"in" if withInCircle else "not in" ))
$Output:$