<h1>PUEDO CONDUCIR ?</h1>
<script>
function saltarLinea() {
document.write("<br>");
}
function imp(frase) {
document.write(frase);
saltarLinea();
}
var edad = parseInt(prompt("¿Cuál es tu edad?"));
var tieneLicencia = prompt("¿Tienes licencia? Responde S o N");
if(edad >= 18 && tieneLicencia == "s"){
imp("Puedes conducir adelante wow")
}else if(edad >= 18 && tieneLicencia == "n"){
imp("No puedes conducir lo siento ");
}else {
imp("No puedes conducir lo siento :c ");
}
</script>