CAP = int(input('Capital: ')) MESES = int(input('Meses: ')) JUR = int(input('Taxa: ')) CAP = CAP * (1 + (JUR/100)) ** MESES print('retorno: ', CAP)