#include #include #include int main(void) { int i, c = 0; char s[1001], t[1001]; scanf("%d", &i); scanf("%s", s); scanf("%s", t); for (i = 0; s[i] != '\0'; i++) if (s[i] != t[i]) c++; printf("%d\n", c); return EXIT_SUCCESS; }