PROGRAMMING:Gamers
A game company launched a new game at the end of the year, with a total of 100 levels. Game players were invited to test internally. Players were awarded different titles according to the level they reached, and those who won the title of God level player were rewarded, and a set of advanced game equipment was presented. It is known that players who reach level 90-100 will be awarded the title of God level player (s), players who reach level 80-89 will be awarded the title of cow level player (n), players who reach level 70-79 will be awarded the title of senior player (g), and players who reach level below 70 will be awarded the title of ordinary player (c). Please help the company record player titles and count the number of players who can get advanced game equipment.
###Input format:
The input is 2 lines. The first line is a positive integer n (n < = 10), which represents the number of players. The next line is n lines. Each line contains a player information, including player ID (a number string without spaces of length 9), nickname (a string of characters without spaces of length no more than 20), and the number of times to reach the level (an integer greater than or equal to 0 and an integer less than or equal to 100).
###Output format:
Output all player's level information according to the input order. One player's information takes up one line, including player ID, nickname and title, separated by a space in the middle, and then output the number of people who can get advanced game equipment.
###Input example:
```in
two
000001 li 90
000002 zhang 79
```
###Output example:
```out
000001 li S
000002 zhang G
one
```
answer:If there is no answer, please comment
###Input format:
The input is 2 lines. The first line is a positive integer n (n < = 10), which represents the number of players. The next line is n lines. Each line contains a player information, including player ID (a number string without spaces of length 9), nickname (a string of characters without spaces of length no more than 20), and the number of times to reach the level (an integer greater than or equal to 0 and an integer less than or equal to 100).
###Output format:
Output all player's level information according to the input order. One player's information takes up one line, including player ID, nickname and title, separated by a space in the middle, and then output the number of people who can get advanced game equipment.
###Input example:
```in
two
000001 li 90
000002 zhang 79
```
###Output example:
```out
000001 li S
000002 zhang G
one
```
answer:If there is no answer, please comment