<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help Amanda</title>
</head>
<body>
<script>
var n = prompt("Escolha um número de 1 a 5:");
if(n>0 & n<6){
document.write("O resultado da fórmula é : " + n * (10 / 20) );
} else {
alert("O número deve ser de 1 a 5");
}
</script>
</body>
</html>