PROGRAMMING:Can you count
###Task description
Please count as required.
###Input format:
The first line of input data is an integer (1-10), indicating that there are n groups of data.
Next, there are n groups of data. The first number m of each group is the number of this group of data, and the next m positive integers are all of this group of data.
###Output format:
Output all the numbers of each group of data, the number of 0-9 ten digits.
The statistical results of each group of data occupy a single line, and the format is ten groups of X-Y, separated by spaces. X represents ten numbers of 0-9, and Y represents the number of occurrences.
###Input example:
```in
three
4 100 123 456789 1122568
3 12345 54321 67890
2 123 456
```
###Output example:
```out
0-2 1-4 2-3 3-1 4-1 5-2 6-2 7-1 8-2 9-1
0-1 1-2 2-2 3-2 4-2 5-2 6-1 7-1 8-1 9-1
0-0 1-1 2-1 3-1 4-1 5-1 6-1 7-0 8-0 9-0
```
answer:If there is no answer, please comment
Please count as required.
###Input format:
The first line of input data is an integer (1-10), indicating that there are n groups of data.
Next, there are n groups of data. The first number m of each group is the number of this group of data, and the next m positive integers are all of this group of data.
###Output format:
Output all the numbers of each group of data, the number of 0-9 ten digits.
The statistical results of each group of data occupy a single line, and the format is ten groups of X-Y, separated by spaces. X represents ten numbers of 0-9, and Y represents the number of occurrences.
###Input example:
```in
three
4 100 123 456789 1122568
3 12345 54321 67890
2 123 456
```
###Output example:
```out
0-2 1-4 2-3 3-1 4-1 5-2 6-2 7-1 8-2 9-1
0-1 1-2 2-2 3-2 4-2 5-2 6-1 7-1 8-1 9-1
0-0 1-1 2-1 3-1 4-1 5-1 6-1 7-0 8-0 9-0
```
answer:If there is no answer, please comment