es muy basico lo tuyo, y es un tema ede javascript pero igual te ayudo :
Código HTML:
Ver original<input type="text" id="uno" value=""> <input type="text" id="dos" value=""> <input type="text" id="resultado" value=""> <input type="button" id="but" value="calcula" onclick="calcula();">
Código Javascript
:
Ver originalfunction calcula(){
var a = document.getElementBy('uno').value;
var b = document.getElementBy('dos').value;
var c = a * b;
document.getElementBy('resultado').value= c;
}
}