#include int main(void){ int c=-1,w=0; char p='a'; while(p!='\0'){ scanf("%c",&p); if(p!='c'){ c++; }else w++; } if(c>w){ printf("%d",c); }else printf("%d",w); return 0; }