What is wrong in it ?

“”"
ATM CODED by Muhammad Hussain

“”"

amount = 250
balance = 300

if(balance < amount):
print (“You don’t have enough balance to withdraw from your account”)
print (balance)
else:
if( amount % 5 == 0):
print ("You withdraw s" amount)
balance = (balance - amount) - 0.50
print ("Remaining Account balance is s" balance)
else:
print (“Not multiple of 5, try multiple of 5 please”)