#Jogo da adivinhacao
numero_secreto = 42
rodada = 1
total_de_tentativas = 3
while (rodada <= total_de_tentativas):
print('Tentativa {} de {}'.format(rodada, total_de_tentativas))
chute = int(input('Adivinhe o numero: '))
if (chute == numero_secreto):
print('Voce acertou!')
break
elif (chute > numero_secreto):
print('O numero foi maior!')
elif (chute < numero_secreto):
print('O numero foi menor')
rodada += 1