n = gets.to_i s = gets.chomp t = gets.chomp ans = 0 (0...n).each do |i| if s[i] != t[i] ans += 1 end end puts ans