number = 23
running = True
while running:
guess = int(raw_input('Enter an integer:'))
if guess == number:
print 'congratulations, you guessed it.'
print "(but you do not win any prizes!)"
running = False
elif guess < number:
print 'No, it is a little higher than that'
else:
print 'No, it is a little lower than that'
else:
print 'The while loop is over'
print 'Done'