</html>
<script>
var secreto = 5;
var input = document.querySelector("input");
function veficar (){
if (parseInt(input.value) == secreto ){
alert("Acerto el numero");
}
else{
alert("Erro el numero")
}
}
var button =document.querySelector("button");
button.onclick = veficar;
</script>