Solution to the problem number 226A of Codeforces - 226A.

Any questions do not hesitate to contact.

/* Visit: https://isaaclo97.github.io/Programacion.html
 * Author: isaaclo97
 * Time: 2019-10-27 11:58:41
**/

#include <bits/stdc++.h>
#define INF 0x3f3f3f3f
using namespace std;

typedef long long ll;

int main() {
    int n,index=0,res=0; scanf("%d",&n); cin.ignore();
    string a; cin>>a;
    for(unsigned int i=1; i<a.length();i++){
        if(a[index]==a[i]) res++;
        else index++;
    }
    printf("%d",res);
    return 0;
}

Don't miss anything.

Keep in touch with Isaac Lozano Osorio!