<input id=a type="text" placeholder="Введите число">
<input id=b type="text" placeholder="Введите число">
<button onclick="summ();">Сумма</button>
<script>
function summ () {
alert(+document.getElementById('a').value - (-document.getElementById('b').value));
}
</script>