Cookie Monster like cookie. Cookie Monster want cookie. Cookie Monster have String of all lowercase letters. Tell Cookie Monster how many characters in are one of the letters in "cookie".
Constraints
Input Specification
The first and only line contains the string .
Output Specification
One line with one integer, the number of characters in that are one of the letters in "cookie".
Sample Input
cracker
Sample Output
4
Sample Explanation
The first (c
), fourth (c
), fifth (k
), and sixth (e
) letters are contained in "cookie". So, there are characters in that are one of the letters in "cookie".
Comments