PROGRAMMING:Is it shunzi
This topic requires the judgment of the five poker cards read in: is it a normal shunzi.
Note: 34567890jqka2ww I believe you all know one or two, in order to simplify the operation, 0 stands for 10, W and W stand for Xiao Wang and Wang, DA and Xiao Wang can replace any card. Program to judge whether the input five cards will form a Shun son (when there are multiple schemes, the output is larger, 34567 and 0jqka are the smallest and largest Shun son respectively)
###Input format:
Input five cards represented by five characters, the system ensures that the input data is correct, but it is not necessarily orderly.
###Output format:
Output these five cards composed of Shun son or output empty means not shun son, note that the size of the king can be used as any card, the output Shun son requirements is the largest one, and ascending order (if any).
###Input sample 1:
```in
A0KJw
```
###Output sample 1:
```out
[0JQKA]
```
###Input sample 2:
```in
A3452
```
###Output sample 2:
```out
[]
```
answer:If there is no answer, please comment
Note: 34567890jqka2ww I believe you all know one or two, in order to simplify the operation, 0 stands for 10, W and W stand for Xiao Wang and Wang, DA and Xiao Wang can replace any card. Program to judge whether the input five cards will form a Shun son (when there are multiple schemes, the output is larger, 34567 and 0jqka are the smallest and largest Shun son respectively)
###Input format:
Input five cards represented by five characters, the system ensures that the input data is correct, but it is not necessarily orderly.
###Output format:
Output these five cards composed of Shun son or output empty means not shun son, note that the size of the king can be used as any card, the output Shun son requirements is the largest one, and ascending order (if any).
###Input sample 1:
```in
A0KJw
```
###Output sample 1:
```out
[0JQKA]
```
###Input sample 2:
```in
A3452
```
###Output sample 2:
```out
[]
```
answer:If there is no answer, please comment