''' Imagine a number guessing game, where one person chooses a number (let's say 31) and the other tries to guess it: Question: "Is it 25?" Answer: "No, it is higher." Question: "Is it 37? Answer: "No, it is lower." Question: "Is it 33?" Let's implement this game in Python: * Define a number between 1 and 100. * Ask user to guess it via `input()` function. * After each guess, you have to say whether the answer is correct, or higher or lower than the guess. * The game finishes when the guess is correct. ''' # Your code here