#include "stdafx.h"
#include "string.h"
int main()
{
char s[100] = { 0 };
int i,t,c = 0;
scanf("%s", s);
t = strlen(s);
for (i = 0; i < t; i++)
{
if ((s[i] >= 'a'&&s[i] <= 'z') || (s[i] >= 'A'&&s[i] <= 'Z'))
c++;
}
printf("%d\n", c);
return 0;
}
0.0分
0 人评分