//
// main.c
// c yuyan
//
// Created by anzhongyin on 2016/11/29.
// Copyright © 2016年 anzhongyin. All rights reserved.
//
#include <stdio.h>
//#include <math.h>
int main(int argc, const char * argv[]) {
// insert code here...
// TODO Auto-generated method stub
const int n=100;
int number[n]={0};
int s[10]={0};
int g[10]={0};
for (int i=0;i<100;i++) {
int a;
scanf("%d",&a);
if (a==-1) {
break;
}
if (a<100&&a>9) {
number[i]=a;
s[a/10]++;
g[a%10]++;
}
}
for (int i=0; i<10; i++) {
printf("%d在十位出现%d次,在个位上出现%d次; ",i,s[i],g[i]);
}
return 0;
}