Hello everyone, one of the moderators of SPOJPL advised me to ask here about my problem. So ...
I wrote a program that is checking if the given points lies outside, inside or the edge of the circle. There's a example:
Output:
5 (x-position of circle) 5 (y-position of circle) 2 (radius)
4 (tests)
0 0 (x,y-position of points)
6 5
5 7
5 5
Output:
O
I
E
I
And my program:
[bbone=PYTHON,183]import math,sys
x,y,r=map(int,raw_input().split())
t=input()
for i in range(t):
xi,yi=map(int,raw_input().split())
d=math.sqrt((yi-y)(yi-y)+(x-xi)(x-xi))
if d==r:
print "E"
elif d print "I"
elif d>r:
print "O"
sys.exit(0)[/bbone]
The problem is that my program gets NZEC 
Do you have any idea what's causing this error ?
Sorry for my bad english, I don't use this language usually 