#include <bits/stdc++.h> using namespace std; int num[128]; int main(){ string str; while(getline(cin,str)){ for(int i = 0;i < 26;i ++)num[i] = 0; for(int i = 0;i < str.size();i ++){ if(str[i] >= 'A' && str[i] <= 'Z'){ num[str[i] - 'A'] ++; } } for(int i = 0;i < 26;i ++){ cout << char(65 +i) << ":" << num[i] << endl; } } return 0; }