n=int(input());s=input();c=[0]*26 for i in range(n):c[ord(s[i])-ord('A')]+=1 print(*c,sep='')