print("Ola, seja bem vindo ao jogo de adivinhação")
numero_secreto = 42
chute = input("Digite o seu número: ")
print ("Você digitou: ", chute)
acertou = numero_secreto == int(chute)
maior = int(chute) > numero_secreto
menor = int(chute) < numero_secreto
if (acertou):
print("VOCÊ ACERTOU !!")
else:
if(maior):
print("CHUTE MAIOR QUE O NÚMERO SECRETO")
elif(menor):
print("CHUTE MENOR QUE O NÚMERO SECRETO")
`