<meta charset="UTF-8">
<h1>PROGRAMA JUEGO DE ADIVINACION </h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
function fsorteo(n){
m= Math.round(Math.random()*n);
return m;
}
var numero = parseInt(prompt("¿ingrese un numero?"));
var numeroPensado = fsorteo (numero);
imprimir("el numero sorteado es: " + numeroPensado);
</script>