#include<iostream>
#include<cstring>
using namespace std;
void Count(string c, int b[])
{
/**************begin************/
// 统计字符出现的频度
/**************end************/
}
int main()
{
string c; // 存储输入的字符串
while (cin >> c)
{
if (c == "0") break;
int *b = new int[36]{0}; // 存储对应字符的个数
Count(c, b);
delete[] b; // 释放动态分配的数组内存
}
return 0;
}