#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; string s, t; cin >> n >> s >> t; for (int i = 0; i < 2; i++) { int cnt = 0; for (int j = 0; j < n; j++) { if (s[j] != t[j]) { cnt++; } } if (cnt % 2 == i) { cout << cnt << '\n'; return 0; } reverse(s.begin(), s.end()); } }