<!doctype html>
<meta charset= utf-8>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
function loteria(){
var numeroPensado = Math.round(Math.random()*100);
return numeroPensado;
}
var numeroLanzado = parseInt(prompt("Ingrese un número entre 0-10"))
if (loteria() == numeroLanzado){
imprimir("usted acertó")
}
else {
imprimir("usted erró, el número pensado era " + numeroPensado)
}
</script>
</html>