PROGRAMMING:Statistics of the number of characters
Xiao Ming's cousin is a doctor in a famous university abroad, and has just published an academic research paper in an internationally famous SCI journal. The journal charges the page fee for the papers published on it according to the number of words. Now let you use C language programming to help cousin statistics of the number of characters in the paper.
###Input format:
Input only one line of string, and the number of characters in this line is less than 100. It is required to count the number of letters (a ~ Z, a ~ Z are letters), the number of numbers (0 ~ 9 are numbers) and the number of other characters in this line.
###Output format:
Standard output uses one line to output the number of letters, numbers and other characters in the input line, separated by a space.
###Input example:
```in
How To Cover Your Tracks On The Internet2008-06-25
```
###Output example:
The corresponding output is given here. For example:
```out
33 8 9
```
answer:If there is no answer, please comment
###Input format:
Input only one line of string, and the number of characters in this line is less than 100. It is required to count the number of letters (a ~ Z, a ~ Z are letters), the number of numbers (0 ~ 9 are numbers) and the number of other characters in this line.
###Output format:
Standard output uses one line to output the number of letters, numbers and other characters in the input line, separated by a space.
###Input example:
```in
How To Cover Your Tracks On The Internet2008-06-25
```
###Output example:
The corresponding output is given here. For example:
```out
33 8 9
```
answer:If there is no answer, please comment