PROGRAMMING:Count the number of characters
Input a paragraph of English (more than 20 characters, less than 80 characters) continuously from the keyboard, and then count the times of each English character.
###Input format:
Input a paragraph of English continuously.
###Output format:
Output the number of times each character appears in character case order and character order. The output format is # -- X, where "#" is an English character and X is its number. 10 items are output in one line, with a space between each two items, and no space at the end of the line and after the last item.
###Input example:
Here is a set of inputs. For example:
```in
A BB CCC DDDD EEEEE FFFFFF a bb ccc dddd eeeee ffffff
```
###Output example:
The corresponding output is given here. For example:
```out
A--1 B--2 C--3 D--4 E--5 F--6 a--1 b--2 c--3 d--4
e--5 f--6
```
answer:If there is no answer, please comment
###Input format:
Input a paragraph of English continuously.
###Output format:
Output the number of times each character appears in character case order and character order. The output format is # -- X, where "#" is an English character and X is its number. 10 items are output in one line, with a space between each two items, and no space at the end of the line and after the last item.
###Input example:
Here is a set of inputs. For example:
```in
A BB CCC DDDD EEEEE FFFFFF a bb ccc dddd eeeee ffffff
```
###Output example:
The corresponding output is given here. For example:
```out
A--1 B--2 C--3 D--4 E--5 F--6 a--1 b--2 c--3 d--4
e--5 f--6
```
answer:If there is no answer, please comment