#Question 2

balance = float(input("Enter balance: "))
withdraw = float(input("Enter withdrawal amount: "))

if balance > withdraw:
    new = balance - withdraw
    print("New balance = ", new)
else:
    print("Withdrawal denied")