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