<meta charset="utf-8">
<h1> PROGRAMA DE LICENCIA DE CONDUCIR</h1>
<br>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase){
document.write(frase);
saltarLinea();
}
var edad = parseInt(prompt("Ingrese su edad"))
var licencia = prompt("Posee una licencia de conducion? S/N")
if (edad >= 18 && licencia == "S"){
imprimir("Usted puede conducir")
}
else{
imprimir("Usted no puede conducir")
}
</script>