#include // clang-format off using namespace std; using ll=long long; using ull=unsigned long long; using pll=pair; const ll INF=4e18; void print0(){}; template void print0(H h,T... t){cout<void print1(H h,T... t){print0(h);if(sizeof...(T)>0)print0(" ");print1(t...);} void ioinit() { cout<> N >> S; vector cnt(256); for (auto c : S) { cnt[c]++; } for (char c = 'A'; c <= 'Z'; c++) { print0(cnt[c]); } print1(); return 0; }