<!DOCTYPE html>
<html lang="pt_br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lógica</title>
</head>
<body>
<script>
alert ("Será isso um programa?");
document.write("Luana nasceu em " + (2010 - 20));
document.write("<br>");
document.write("Duda nasceu em " + (2015 - 10));
document.write("<br>");
document.write("Vitoria nasceu em " + (2025 - 30));
document.write("<br>");
document.write ("Média das idades das meninas: <br>" + (34+19+29)/3);
</script>
</body>