HS08TEST ....Error

def attempted_transc(withdraw,inital_account):
if(withdraw % 5 != 0 and (withdraw > inital_account)):
print(inital_account)
else:
a = inital_account-float(withdraw+0.50)
print(a)

if name == ‘main’:
withdraw = int(input()) (line 13)
inital_account = float(input())
attempted_transc(withdraw,inital_account)

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

Its working good with Pycharm but here it is showing error

If you’re trying to “compile and run”, make sure you provide the custom input. It’s not uncommon to see this error otherwise.