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