#include #include #include using namespace std; int main(){ int n;cin>>n; map A; for(int i = 0; n > i; i++){ string s;int t;cin>>s>>t; A[s] = t; } vector ans(8); for(auto x: A){ ans[x.second]++; } for(int i = 0; 8 > i; i++){ cout << ans[i] << endl; } }