Hice la prueba con tu ejemplo,ahora mejor te copio todo nuevamente y lo comparas con tu archivo actual
Código HTML:
Ver original<script language='javascript'> function fsuma(){
n1=document.f1.num1.value;
n2=document.f1.num2.value;
res=document.f1.resul.value;
res=parseInt(n1)+parseInt(n2);
document.f1.resul.value=res;
}
<form name='f1' action="ejercicio1.html" method=POST> <input type=button value=" + " onclick="fsuma()">
<input type=text name='resul'/>
Saludos