#include
void main(0
{
int Input = 0;
int Count[10] = {0};
int i = 0;
for(i = 0; i < 20; i++)
{
scanf("%d",&Input);
Count[Input] ++;
}
for(i = 0; i < 10; i++)
{
printf("%d 出现的次数为%d\n",i,Count[i]);
}
}