python_3.5 EOF error with HS08TEST

I have the NZEC problem using pyth3.5 with HS08TEST-ATM problem I have tested all sample input and there is no problem with them and I solved it before with c++ but I keep getting error with 2nd line of my code which is :
t=input()

the message is:
Traceback (most recent call last):
File “./prog.py”, line 2, in
EOFError: EOF when reading a line

but when I use custom input there is no problem

my solution>>CodeChef: Practical coding for everyone
problem>>HS08TEST Problem - CodeChef
all my solutions>>CodeChef: Practical coding for everyone

Hey @zeroth_blank,

instead of finding find use map to take input, there must be some problem with find,

z, q = map(float,input().split())

Hope this helps!

(Checked now your program is giving WA instead of NZEC)

When you run your program here, the computer gives some pre specified input. But when the input syntax of computer doesn’t match with your program input syntax it shows EOF error. For example, if in a programm,you made it to take 2 inputs one after other other, but the computer gives 2 inputs at once,the it’ll give the error. To avoid this error ,make program which takes exact input in same syntax as in example of input and output. in your case you should use .split function and take two inputs together.