using System; using System.Text; using System.Linq; namespace ConsoleApp11 { class Program { static void Main(string[] args) { int count = 0; int n = int.Parse(Console.ReadLine()); char[,] S = new char[2,n]; for (int i = 0; i < 2; i++) { var input = Console.ReadLine().Trim(); for(int j = 0; j < n; j++) { S[i, j] = input[j]; } } for(int i = 0; i < 1; i++) { for(int j = 0; j < n; j++) { if(S[i,j] != S[i + 1, j]) { count++; } } } Console.WriteLine(count); } } }