I am trying to calculate the value and send it to the input. But it considers it as not 7.082 + 10 + 10, but simply adds 10 at the end, as if it were a text.
<script> function krsp() { var kolrap = document.getElementById('kolrap').value ; var priladka = document.getElementById('priladka').value ; var procent = document.getElementById('procent').value; document.getElementById('kolrsp').value = document.getElementById('kolrap').value * document.getElementById('procent').value / 100 + (document.getElementById('kolrap').value + document.getElementById('priladka').value) ; } </script>