PROGRAMMING:Poker Game 1
###Task description
```
The teacher left a task for student X: to judge the type of cards in the poker game.
```
###Input format:
```
The first line of input is an integer n, indicating that there are n groups of data.
The next n rows are n groups of data, and each row has 3 playing cards,
For example: 5S 6h 12C, where the number represents the number of points (2-10 represent the cards from 2 to 10 respectively, 14 represent a, 11, 12 and 13 represent J, Q and K),
The letter represents the first character of the decor, spade, heart, club and diamond.
The above three cards are spade 5, heart 6 and square Q.
```
###Output format:
```
Output n lines, each line outputs a word, which represents the maximum card type of three cards in a group of data, and then output the (maximum) points of this card type after the space.
The order of all cards from big to small is as follows (Leopard > flush > shunzi > flush > duizi > suit)
(1) Leopard: three cards count the same, such as 5S 5h 5C.
(2) Flush straight: three cards of the same suit and color, and the points are just adjacent, such as 5S, 6S, 7S.
(3) Straight: three cards are adjacent, but different colors, such as 10h, 11d, 12C.
(4) Same kind: three cards have the same suit and color, but different points, such as 8h, 5h, 11h.
(5) Pair: the suit and color are not all the same, the two cards have the same number of points, such as 11h 5C 11d.
(6) General: different colors and points, such as 5D, 6C, 8h.
```
###Input example:
```in
six
8H 8D 8C
5S 7S 6S
11C 12D 10S
1C 5C 6C
10C 8D 8H
5D 6H 12C
```
###Output example:
```out
Leopard 8
Flush straight 7
Straight Q
Same kind 6
Pair 8
General Q
```
answer:If there is no answer, please comment
```
The teacher left a task for student X: to judge the type of cards in the poker game.
```
###Input format:
```
The first line of input is an integer n, indicating that there are n groups of data.
The next n rows are n groups of data, and each row has 3 playing cards,
For example: 5S 6h 12C, where the number represents the number of points (2-10 represent the cards from 2 to 10 respectively, 14 represent a, 11, 12 and 13 represent J, Q and K),
The letter represents the first character of the decor, spade, heart, club and diamond.
The above three cards are spade 5, heart 6 and square Q.
```
###Output format:
```
Output n lines, each line outputs a word, which represents the maximum card type of three cards in a group of data, and then output the (maximum) points of this card type after the space.
The order of all cards from big to small is as follows (Leopard > flush > shunzi > flush > duizi > suit)
(1) Leopard: three cards count the same, such as 5S 5h 5C.
(2) Flush straight: three cards of the same suit and color, and the points are just adjacent, such as 5S, 6S, 7S.
(3) Straight: three cards are adjacent, but different colors, such as 10h, 11d, 12C.
(4) Same kind: three cards have the same suit and color, but different points, such as 8h, 5h, 11h.
(5) Pair: the suit and color are not all the same, the two cards have the same number of points, such as 11h 5C 11d.
(6) General: different colors and points, such as 5D, 6C, 8h.
```
###Input example:
```in
six
8H 8D 8C
5S 7S 6S
11C 12D 10S
1C 5C 6C
10C 8D 8H
5D 6H 12C
```
###Output example:
```out
Leopard 8
Flush straight 7
Straight Q
Same kind 6
Pair 8
General Q
```
answer:If there is no answer, please comment