Files
CodeTest/baekjoon/크로아티아_알파벳/solution_6691998.py
2024-08-29 16:24:05 +09:00

3 lines
126 B
Python

string = input()
croatic = ['c=','c-','d-','lj','nj','s=','z=','dz=']
print(len(string)-sum(string.count(c) for c in croatic))