#include<stdio.h>
#include<string.h>
int main()
{
int i, s=0;
char str[1000]= {};
scanf("%s",&str);
for(i=0; str[i]!=NULL; i++)
{
if(str[i]=='C')
{
s++;
}
else if(str[i]=='c')
{
s++;
}
}
printf("%d",s);
printf("\n");
s=0;
for(i=0; str[i]!=NULL; i++)
{
if(str[i]=='c' && str[i+1]=='C')
{
s++;
}
else if(str[i]=='C'&&str[i+1]=='c')
{
s++;
}
else if(str[i]=='C' && str[i+1]=='C')
{
s++;
}
else if(str[i]=='c'&&str[i+1]=='c')
{
s++;
}
}
printf("%d",s);
printf("\n");
return 0;
}