92. Counting the Alphabet

Time Limit: 1 seconds

Memory Limit: 256 MB

Rating: 800

Problem Statement

A word $S$ is given that consists of lowercase English letters only. Find how many of each letter of the alphabet exists in $S$.

Input

The first line contains integer $N$, the length of $S$. Then follows string $S$, the length of which is guaranteed to not exceed $100$.

Output

Output the number of a's, number of b's, ..., number of z's each separated by spaces.

Sample Cases
Sample Input 1:
9
ianojgood

Sample Output 1:
1 0 0 1 0 0 1 0 1 1 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0
Explanation

Not available for this problem.

Sources

BOJ #10808

Submit | Back