#include<iostream>
using namespace std;

int main(){
	
	int a,b,c;
	a=0;
	b=0;
	c=0;
	
	char x;

	x=getchar();
	while(x!='#'){
		if(x>='A' && x<='Z')
			a++;
			
		if(x>='a' && x<='z')
			b++;
			
		if(x>='0' && x<='9')
			c++;
			
		x=getchar();
	}
	cout<<a<<" "<<b<<" "<<c<<endl;
	
}

/**************************************************************
	Problem: 1097
	User: admin
	Language: C++
	Result: Accepted
	Time:8 ms
	Memory:2072 kb
****************************************************************/