A1389.[COCI-2008_2009-contest5]#4 LJESNJAK
普及+/提高
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
Not so long ago, before operating systems were as powerful as they are today, computers (which often had turbo buttons on the exterior) couldn't handle certain letters of the Croatian alphabet.
Programmers agreed to use two or three-letter substitutions as in this table:
For example, the word ljes=njak consists of six letters in the Croatian alphabet: lj, e, š, nj, a, k.
Write a program that calculates the number of letters in the given word.
输入格式
The first line contains a string of at most 100 characters. Only lowercase letters of the English alphabet and characters '–' and '=' will appear.
The string will represent a word encoded as described above.
输出格式
Output the number of letters in the input word.
输入输出样例
输入#1
dz=ak
输出#1
3
输入#2
ljes=njak
输出#2
6