n=int(input()) s=input() a=[0]*26 for c in s: a[ord(c)-ord("A")]+=1 print("".join(map(str,a)))