import random
while True:
target = random.randint(0, 100)
x = int(input("Try to guess the number I'm think of: "))
while True:
if x > target:
x = int(input("Too high! Guess again: "))
elif x < target:
x = int(input("Too low! Guess again: "))
else:
break
choice = input("That's it would you like to play again?(yes/no)")
if choice == 'no':
break
print("that's it! Thanks for playing.")