13453: 字符个数统计

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:3 Solved:2

Description

编写一个 C++ 程序,要求用户输入一个字符串,然后统计并输出每个字符的出现频率。

Input

输入一个字符串

Output

每一种字符出现的次数

Sample Input Copy

sfdsf2312!@$#!@

Sample Output Copy

s:2
f:2
d:1
2:2
3:1
1:1
!:2
@:2
$:1
#:1