PROGRAMMING:bullfight
bullfight
The rules of bullfight are very complex, which husky can't understand. Husky simplified the rules of bullfight. The rules are as follows:
A total of 5 cards, if any 3 cards, can make up a multiple of 10, then the remaining 2 cards will be added up (only these 2 cards according to the following rules to get points).
1. If the sum of the two cards is greater than 10, then subtract 10 from the sum of the two cards, and the rest is the number of points.
2. If the sum of the two cards is less than 10, the number of points is the sum of the two cards;
3. If the sum of the remaining 2 cards is 10 or 20, then the number of points is 10.
4. If you don't have three pieces to make a multiple of 10, then there is no cattle.
The number of no cattle is 0; A victory with high points is a draw.
Husky and Chen Shuai play bullfight, if husky can win, then output "hsqwin", if the draw output "same", if husky loses, then output "hsqlose";
###Input format:
There are multiple groups of input data, each input has 2 lines, each line has 5 numbers (each number is greater than or equal to 1, less than or equal to 10); The first act is Husky's card;
###Output format:
If husky can win, he will output "hsqwin", if he draws, he will output "same", if husky loses, he will output "hsqlose";
###Input example:
Here is a set of inputs. For example:
```in
10 1 8 8 10
10 6 3 1 7
6 10 1 4 2
1 2 10 4 2
7 3 9 3 6
6 9 5 7 9
```
###Output example:
The corresponding output is given here. For example:
```out
hsqlose
hsqwin
hsqlose
```
answer:If there is no answer, please comment
The rules of bullfight are very complex, which husky can't understand. Husky simplified the rules of bullfight. The rules are as follows:
A total of 5 cards, if any 3 cards, can make up a multiple of 10, then the remaining 2 cards will be added up (only these 2 cards according to the following rules to get points).
1. If the sum of the two cards is greater than 10, then subtract 10 from the sum of the two cards, and the rest is the number of points.
2. If the sum of the two cards is less than 10, the number of points is the sum of the two cards;
3. If the sum of the remaining 2 cards is 10 or 20, then the number of points is 10.
4. If you don't have three pieces to make a multiple of 10, then there is no cattle.
The number of no cattle is 0; A victory with high points is a draw.
Husky and Chen Shuai play bullfight, if husky can win, then output "hsqwin", if the draw output "same", if husky loses, then output "hsqlose";
###Input format:
There are multiple groups of input data, each input has 2 lines, each line has 5 numbers (each number is greater than or equal to 1, less than or equal to 10); The first act is Husky's card;
###Output format:
If husky can win, he will output "hsqwin", if he draws, he will output "same", if husky loses, he will output "hsqlose";
###Input example:
Here is a set of inputs. For example:
```in
10 1 8 8 10
10 6 3 1 7
6 10 1 4 2
1 2 10 4 2
7 3 9 3 6
6 9 5 7 9
```
###Output example:
The corresponding output is given here. For example:
```out
hsqlose
hsqwin
hsqlose
```
answer:If there is no answer, please comment