CAP = int(input('Capital: ')) ANOS = int(input('Anos: ')) JUR = int(input('Juros: ')) CAP = CAP + (CAP * JUR * ANOS) / 100 print('retorno: ', CAP)