Here is the code:
<script type="text/javascript">
function Enviar(){
var tempo = document.getElementById('tempo');
var veloc = document.getElementById('veloc');
var distancia = parseInt(tempo) * parseInt(veloc);
var litros = parseInt(distancia) / 12;
alert("Tempo gasto de viagem:"+tempo.value+"\nVelocidade média:"+veloc.value+
"\nDistância percorrida:"+distancia.value+"\nLitros gastos:"+litros.value);
}
</script>
</body>
But in the result it says that the distance and liter variables are "undefined" and should contain the results of multiplication and division.