ankitchanne
def atm(w): fund=30000.00 w=input() total=w+w*0.50/100 if w%5==0 and fund-total>=0: print fund-total else: sys.exit() atm(0)
this is my code.But I am getting NZEC. help-the-noob
def atm(w): fund=30000.00 w=input() total=w+w*0.50/100 if w%5==0 and fund-total>=0: print fund-total else: sys.exit() atm(0)
this is my code.But I am getting NZEC. help-the-noob