Beakjoon&프로그래머스/파이썬
[백준/파이썬] 33810번 SciComLove
현장
2025. 5. 5. 13:23
-Code
words = "SciComLove"
line = input()
res = 0
for i in range(len(line)):
if words[i] != line[i]:
res += 1
print(res)