0
I need the value that is written in the variable "add_money" to be added and added in the variable "balance"
saldo = 0
op = input('O que deseja fazer? ')
if op == 'add': add_money = int(input('Qual sera o valor? '))
add_money + saldo
print(saldo)