using System; namespace yukicoder { class Program { static void Main(string[] args) { int a = int.Parse(Console.ReadLine()); string s = Console.ReadLine(); string s1 = Console.ReadLine(); int count = 0; for(int i = 0; i < a; i++) { string b = s.Substring(i, 1); string c = s1.Substring(i, 1); if (b != c) { count++; } } Console.WriteLine(count); } } }