#include #include int main () { int n = 0; char s[2000][201] = {}; int c[2000] = {}; int res = 0; int ans[8] = {}; res = scanf("%d", &n); for (int i = 0; i < n; i++) { res = scanf("%s", s[i]); res = scanf("%d", c+i); } for (int i = 0; i < n; i++) { int idx = i+1; int is_ok = 1; while (idx < n && is_ok > 0) { if (strcmp(s[i], s[idx]) == 0) { is_ok = 0; } idx++; } if (is_ok > 0) { ans[c[i]]++; } } for (int i = 0; i < 8; i++) { printf("%d\n", ans[i]); } return 0; }