#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int N; cin >> N; vector S; vector C; string str; int temp; bool flg; for (int i = 0; i < N; i++) { cin >> str >> temp; flg = true; for (unsigned int j = 0; j < S.size(); j++) { if (str == S.at(j)) { flg = false; C.at(j) = temp; break; } } if (flg) { S.push_back(str); C.push_back(temp); } } vector A(8); for (unsigned int i = 0; i < C.size(); i++) { A.at(C.at(i))++; } for (int i = 0; i < 8; i++) { cout << A.at(i) << endl; } return 0; }