1911: 【入门】捉虫子
Memory Limit:64 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
虫子的英文是"bug",同时"bug"在程序中也表示程序的错误或者漏洞。
现输入一句英文短句(总长度不超过100个字符),短句中含有若干英文单词和空格,请问:单词"bug"出现了多少次?
比如输入:My programe has a bug and the bug is not founded and i am debug now,其中bug这个单词出现2次;
要注意:单词"debug"不能算作我们要找的"bug",本题要找的单词"bug"是不区分大小写的,也就是说,如果找到的是单词"Bug",也算作我们要找的单词。
Input
一句英文短句,总长度不超过100个字符。
Output
输出"bug"出现的次数。
Sample Input Copy
My programe has a bug and the bug is not founded and i am debug now
Sample Output Copy
2