Description
Little Johnny enjoys playing with words. He has chosen n palindromes (a palindrome is a wordthat reads the same when the letters composing it are taken in the reverse order, such as dad, eye or racecar for instance) then generated all n2 possible pairs of them and concatenated the pairs intosingle words. Lastly, he counted how many of the so generated words are palindromes themselves.
However, Johnny cannot be certain of not having comitted a mistake, so he has asked you to repeatthe very same actions and to give him the outcome. Write a programme which shall perform thistask for you.
TaskWrite a programme which:
reads the palindromes given by Johnny from the standard input, determines the number of words formed out of pairs of palindromes from the input, which are palindromes themselves, writes the outcome to the standard output.
Input
The first line of the standard input contains a single integer n, n≥2, denoting the number ofpalindromes given by Johnny. The following n lines contain a description of the palindromes. The (i+1)'st line contains a single positive integer ai denoting the length of i'th palindrome and apalindrome of ai small letters of English alphabet. The number ai is separated from the palindromeby a single space. The palindromes in distinct lines are distinct. The total length of all palindromesdoes not exceed 2 000 000.
Output
The first and only line of the standard output should contain a single integer: the number of distinctordered pairs of palindromes which form a palindrome upon being concatenated.
6
2 aa
3 aba
3 aaa
6 abaaba
5 aaaaa
4 abba