#include using namespace std; using ll = long long; constexpr char newl = '\n'; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector a(n), b(n); for (int i = 0; i < n; i++) { cin >> a[i]; } for (int i = 0; i < n; i++) { cin >> b[i]; } bool f = false; int ans = 0; for (int i = 0; i < n; i++) { if (a[i] == b[i]) { f = false; } else { if (!f) ++ans; f = true; } } cout << ans << newl; return 0; }