Count letters in the text
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
The text is given. How many times each Latin letter (from 'a' to 'z') appears in the text? Do not distinguish the uppercase and lowercase letters.
Input
Contains sequence of characters - a text.
Output
Print 26 integers in a line: the number of times each Latin letter appears in the text.
Examples
Input #1
Answer #1
Submissions 640
Acceptance rate 44%