<html>
<head>
<title>Калькулятор</title>
<script>
function calculator(){
let a
let b
let s
let f
f = document.forms.nameForm
a = Number(f.inputA.value)
b = Number(f.inputB.value)
s=a+b
document.write("<b>Ответ:</b> " + s)
}
</script>
</head>
<body>
<h1>Калькулятор</h1>
<form name="nameForm">
Введите A: <input type="text" value="0" name="inputA"><br>
Введите B: <input type="text" value="0" name="inputB"><br>
<input type="button" value="Вычислить" onclick="calculator()">
</form>
</body>
</html>