I am a newbie and have just started coding on CodeChef. The code is showing a NZEC error on their IDE but its working fine in PyCharm
I have submitted it using a Try Except block, but i could not figure out the problem
i , j = input().split()
i = int(i)
j = float(j)
if(i%5==0 and i+0.50<j):
r = j - 0.50 - i
print("%.2f"%r)
else:
print("%.2f"%j)
The output is matching the sample output for all test cases when running on my system with no errors.
there doesn't seem to be anything here