PROGRAMMING:Count the number of different number characters
Read in a line of characters from the keyboard (Convention: the number of characters ≤ 127 bytes), count and display the times of 10 digital characters in the line, and do not display the characters that do not appear. If there are no numeric characters, output "none!".
###Input format:
Read in a string on each line.
###Output format:
Output the statistical results according to the output sample format, and output "none!" if there are no numeric characters.
###Input example:
```in
a053 JHSa 5we !=-) 35xhyasei..df
```
###Output example:
```out
0-1
3-2
5-3
```
###Input example:
```in
asder%^&%%$k---:"hfeHHGF....
```
###Output example:
```out
None!
```
answer:If there is no answer, please comment
###Input format:
Read in a string on each line.
###Output format:
Output the statistical results according to the output sample format, and output "none!" if there are no numeric characters.
###Input example:
```in
a053 JHSa 5we !=-) 35xhyasei..df
```
###Output example:
```out
0-1
3-2
5-3
```
###Input example:
```in
asder%^&%%$k---:"hfeHHGF....
```
###Output example:
```out
None!
```
answer:If there is no answer, please comment