#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
int main()
{
 char a;
 int num = 0;
 int space = 0;
 int other = 0;
 while ((a = getchar()) != '\n')
 {
  if ((a >= '0') && (a <= '9'))
   num++;
  else if (a == ' ')
   space++;
  else
   other++;
 }
 printf("%d %d %d", num, space, other);
 system("pause");
 return 0;
}