<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style>
*{background-color: rgb(25, 25, 18); color: aliceblue;}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>¿Puedes Conducir?</title>
</head>
<h1>¿Puedes Conducir?</h1>
<body>
<script>
function imprimir(imp){
document.write(imp)
};
function impBr(cant){
for (let index = 0; index < cant; index++) {
document.write("<br>")
}
};
let edad = parseInt(prompt("¿Cuál es tu edad?"));
let tieneLicencia = prompt("¿Tienes licencia? Responde S o N");
if(edad >= 18 && tieneLicencia == "S"){
imprimir("Puedes conducir.");
}
else {
imprimir("No puedes conducir.");
}
</script>
</body>
</html>