PROGRAMMING:Guessing numbers
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 number to be guessed, and prompt whether it is too big or too small, which means that you have guessed. If you guess, end the program. The program also requires statistics of the number of guesses. If the number is guessed once, it will prompt "bingo!"; If the number is guessed within 3 times, "lucky you!" will be prompted; If the number is guessed more than 3 times but within n ($$> $$3) times (including the nth time), it will prompt "good guess!"; If you don't guess more than n times, you will be prompted "game over" and end the program. If the user enters a negative number before reaching n times, it will also output "game over" and end the program.
###Input format:
The first line of input gives two positive integers no more than 100, which are the random number generated by the game machine and the maximum number of guesses n. Finally, each line gives a user's input until a negative number appears.
###Output format:
Output the corresponding result of each guess in one line until the correct result or "game over" is output.
###Input example:
```in
58 4
seventy
fifty
fifty-six
fifty-eight
sixty
-2
```
###Output example:
```out
Too big
Too small
Too small
Good Guess!
```
answer:If there is no answer, please comment
###Input format:
The first line of input gives two positive integers no more than 100, which are the random number generated by the game machine and the maximum number of guesses n. Finally, each line gives a user's input until a negative number appears.
###Output format:
Output the corresponding result of each guess in one line until the correct result or "game over" is output.
###Input example:
```in
58 4
seventy
fifty
fifty-six
fifty-eight
sixty
-2
```
###Output example:
```out
Too big
Too small
Too small
Good Guess!
```
answer:If there is no answer, please comment