Getting an error for inputs in python

t=int(input())
for i in range(t):
m,s=map(int,input().split())
res=m//s
print(res)

The error is NZEC
Traceback (most recent call last):
File “./prog.py”, line 1, in
EOFError: EOF when reading a line

Can someone tell me how to solve this?

@anon50680793 If you are clicking on “Run”, the please provide some valid input under the heading “Custom Input”.

3 Likes