eolymp
bolt
Try our new interface for solving problems
Problems

Block Game

Block Game

Farmer John is trying to teach his cows to read by giving them a set of n spelling boards typically used with preschoolers. Each board has a word and an image on each side. For example, one side might have the word 'cat' along with a picture of a cat, and the other side might have the word 'dog' along with a picture of a dog. When the boards are lying on the ground, n words are therefore shown. By flipping over some of the boards, a different set of n words can be exposed.

To help the cows with their spelling, Farmer John wants to fashion a number of wooden blocks, each embossed with a single letter of the alphabet. He wants to make sufficiently many blocks of each letter so that no matter which set of n words is exposed on the upward-facing boards, the cows will be able to spell all of these words using the blocks. For example, if n = 3 and the words 'box', 'cat' and 'car' were facing upward, the cows would need at least one 'b' block, one 'o' block, one 'x' block, two 'c' blocks, two 'a' blocks, one 't' block, and one 'r' block.

Please help the Farmer John determine the minimum number of blocks for each letter of the alphabet that he needs to provide, so that irrespective of which face of each board is showing, the cows can spell all n visible words.

Input

The first line contains the integer n (1n100).

The next n lines each contain two words, giving the two words on opposite sides of a board. Each word is a string of at most 10 lowercase letters.

Output

Print 26 lines. The first output line should contain a number specifying the number of copies of 'a' blocks needed. The next line should specify the number of 'b' blocks needed, and so on.

Example

In this example, there are n = 3 boards, giving 23 = 8 possibilities for the set of upward-facing words:

fox dog car
fox dog bus
fox cat car
fox cat bus
box dog car
box dog bus
box cat car
box cat bus

We need enough blocks for each letter of the alphabet so that we can spell all three words, irrespective of which of these eight scenarios occurs.

Time limit 1 second
Memory limit 128 MiB
Input example #1
3
fox box
dog cat
car bus
Output example #1
2
2
2
1
0
1
1
0
0
0
0
0
0
0
2
0
0
1
1
1
1
0
0
1
0
0
Source 2016 USACO December, Bronze