I need the code for this Pseudocode
AccountBalance
Begin
Get starting balance
Get withdrawal amount
If withdrawal amount > starting balance Then
Display “Insufficient funds”
Else
final balance – starting balance – withdrawal amount
Display “saving account balance is low
End If
End