#include <stdio.h>
int main()
{
int num=0,blank=0,word=0,other=0;
char a;
while((a=getchar())!='\n')
{
if(a>='0'&&a<='9')
{
num++;
}
else if(a==' ')
{
blank++;
}
else if((a>='a'&&a<='z')||(a>='A'&&a<='Z'))
{
word++;
}
else
{
other++;
}
}
printf("%d %d %d %d",word,num,blank,other);
return 0;
}
0.0分
0 人评分