Problem C: 字符类别与个数

Problem C: 字符类别与个数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 376  Solved: 163
[Submit] [Status] [Web Board] [Creator:]

Description

统计一段短文中大写字母、小写字母、数字及其他符号的数量

Input

一段文字,包括各种字母、数字、标点等符号,以\n结尾,总长度不超过100 

Output

大写字母、小写字母、数字及其他符号的数量,每行一个统计结果

Sample Input Copy

On July 20, 1969, Armstrong became the first man to walk on the moon.

Sample Output Copy

upper:3
lower:44
digit:6
other:17