PROGRAMMING:Count the number of capital letters
Input a line of characters from the keyboard, then count the number of each capital letter, and finally output their number in the order from 'a' to 'Z'.
###Input format:
One line of characters.
###Output format:
The number of each capital letter followed by a space character.
###Input example:
```in
abCDEFAAdefffXyZ123456
```
###Output example:
```out
2 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1
```
answer:If there is no answer, please comment
###Input format:
One line of characters.
###Output format:
The number of each capital letter followed by a space character.
###Input example:
```in
abCDEFAAdefffXyZ123456
```
###Output example:
```out
2 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1
```
answer:If there is no answer, please comment