프로그래밍_일반/백준
boj 10808
Spadework
2020. 2. 15. 09:21
* Solved 기준 브론즈2 단순 풀이
l = [0]*26
for i in input():
l[ord(i)-97] += 1
print(' '.join(map(str,l)))