백준 2941번 제목 : 크로아티아 알파벳
# Python3 s = input() croatia = ['c=', 'c-', 'dz=', 'd-', 'lj', 'nj', 's=', 'z='] for i in croatia: s = s.replace(i, '*') print(len(s))