PROGRAMMING:Simple number guessing game [2]
The number guessing game is to make the game machine randomly generate a positive integer within 100, and the user inputs a number to guess it. You need to write a program to automatically compare it with the randomly generated guessed number, and prompt whether it is too big, too small, or equal. If you guess, end the program. If you don't guess more than 7 times, "game over!" will be prompted, And end the procedure.
###Input format:
The first line of input gives a positive integer no more than 100, representing the random number generated by the game console.
Starting from the second line, each line gives a user's input until they have guessed correctly or have not guessed correctly for more than 7 times.
###Output format:
Output the corresponding guess result in one line each time until the correct guess result "lucky you!" is output Or "game over!" Then it ends.
###Input sample 1:
```in
twelve
fifty
twenty-five
twelve
```
###Output sample 1:
```out
Too big
Too big
Lucky You!
```
###Input sample 2:
```in
sixty
fifty
seventy-five
fifty-eight
sixty-four
sixty-three
sixty-two
sixty-one
```
###Output sample 2:
```out
Too small
Too big
Too small
Too big
Too big
Too big
Too big
Game Over!
```
answer:If there is no answer, please comment
###Input format:
The first line of input gives a positive integer no more than 100, representing the random number generated by the game console.
Starting from the second line, each line gives a user's input until they have guessed correctly or have not guessed correctly for more than 7 times.
###Output format:
Output the corresponding guess result in one line each time until the correct guess result "lucky you!" is output Or "game over!" Then it ends.
###Input sample 1:
```in
twelve
fifty
twenty-five
twelve
```
###Output sample 1:
```out
Too big
Too big
Lucky You!
```
###Input sample 2:
```in
sixty
fifty
seventy-five
fifty-eight
sixty-four
sixty-three
sixty-two
sixty-one
```
###Output sample 2:
```out
Too small
Too big
Too small
Too big
Too big
Too big
Too big
Game Over!
```
answer:If there is no answer, please comment