import random

goal = rand(1,100)

guess = 0

while guess != goal:
guess = int(input("Please guess a number between 1 and 100:, guess)
if guess < goal:
print("Too low, please try again.")
else if guess > goal:
print("Too high, try again.")
else:
print("Well done!)
print()
print("See you later!")