본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 8387번 Dyslexia

by 현장 2024. 10. 28.

-Code

n = int(input())
text1, text2 = input(), input()
res = 0

for i in range(n):
    if text1[i] == text2[i]:
        res += 1

print(res)