Problem2072--第65课 采访报道——动动脑??第3题/P264

2072: 第65课 采访报道——动动脑??第3题/P264

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

从键盘上输入一段英文句子,统计并输出句子中各个小写字母出现的次数(设输入的字符小于1000个)

Input

输入一行:一个字符串

Output

输出统计后的结果

Sample Input Copy

qwertyuiopasdfghjklzxcvbnm

Sample Output Copy

a:1 b:1 c:1 d:1 e:1
f:1 g:1 h:1 i:1 j:1
k:1 l:1 m:1 n:1 o:1
p:1 q:1 r:1 s:1 t:1
u:1 v:1 w:1 x:1 y:1
z:1

Source/Category