#include #include using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false); int n, cnt=0; char input; cin >> n; vector s(n); for(int i=0; i> s[i]; cin.ignore(); for(int i=0; i> input; if(input!=s[i]) ++cnt; } cout << cnt << "\n"; return 0; }