1619 - 单词识别

通过次数

0

提交次数

0

时间限制 : 1 秒 内存限制 : 32 MB

输入一个英文句子,把句子中的单词(不区分大小写)按出现次数按从多到少把单词和次数在屏幕上输出来,要求能识别英文句号和逗号,即是说单词由空格、句号和逗号隔开。

题目输入

输入有若干行,总计不超过1000个字符。

题目输出

输出格式参见样例。

输入/输出样例

输入格式

A blockhouse is a small castle that has four openings through which to shoot.

输出格式

a:2
blockhouse:1
castle:1
four:1
has:1
is:1
openings:1
shoot:1
small:1
that:1
through:1
to:1
which:1