#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N; string S, T; cin >> N >> S >> T; int res = 0; for (int i = 0; i < N; i++) { if (S[i] != T[i]) res++; } cout << res << '\n'; return 0; }