PROGRAMMING:Tortoise and rabbit race
Tortoise and rabbit race, the running field is a rectangular runway, the runway can rest anywhere. The tortoise can advance 3 meters per minute, and the rabbit can advance 9 meters per minute; The rabbit thinks that the tortoise is slow and sure to beat the tortoise, so he looks back at the tortoise every 10 minutes. If he finds that he is ahead of the tortoise, he takes a rest on the side of the road for 30 minutes, otherwise he will continue to run for 10 minutes; And the tortoise worked very hard, ran all the time and didn't rest. Suppose that the tortoise and the rabbit start running at the same starting point and at the same time. Who can run faster after t minutes?
###Input format:
Enter the match time t (minutes) in one line.
###Output format:
Output the result of the game in one line: the tortoise wins and outputs @ @, Rabbits win, A draw will produce '-'; Followed by 1 space, and then output the distance of the winner.
###Input example:
```in
two hundred and forty-two
```
###Output example:
```out
@_@ seven hundred and twenty-six
```
answer:If there is no answer, please comment
###Input format:
Enter the match time t (minutes) in one line.
###Output format:
Output the result of the game in one line: the tortoise wins and outputs @ @, Rabbits win, A draw will produce '-'; Followed by 1 space, and then output the distance of the winner.
###Input example:
```in
two hundred and forty-two
```
###Output example:
```out
@_@ seven hundred and twenty-six
```
answer:If there is no answer, please comment