编程题:圈内还是圈外(inside or outside the circle)?
In order to protect Tang Monk's safety, Sun Wukong drew a circle for Tang Monk and prevented him from going out. He said that as long as he stood in the circle, he would ensure Tang Monk's safety.
Assuming that the center of the circle is at the origin of the x and y axes, enter the x and y coordinates of the location of Tang Monk. The radius of the circle drawn by Sun Wukong is 10. Please judge whether Tang Monk is inside or outside the circle?
孙悟空为了保护唐僧安全,给唐僧画了个圈,不让唐僧走出去,说是只要站在圈里面,就保证唐僧安然无恙。
假设圆心在x,y轴的原点,输入唐僧所在位置的x,y轴坐标,孙悟空所画的圆圈的半径为10,请判断唐僧是在圈内还是圈外?

### 输入格式:
Enter two integers in one line
### 输出格式:
For each group of x y, output whether the coordinate point is inside or outside the circle
###Sample Input:
in
3 4
### Sample Input:
在这里给出相应的输出。例如:
out
(3,4) inside the circle
###Sample Input:
in
11 24
### Sample Input:
在这里给出相应的输出。例如:
out
(11,24) outside the circle
答案:若无答案欢迎评论