You have two strings of the same length made up of lowercase letters. Your task is to count how many positions in these strings have different letters.
Input: 'abcarc', 'agcahc'
'abcarc', 'agcahc'
Output: 2
2
Input: 'atcoder', 'contest'
'atcoder', 'contest'
Output: 7
7