시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 64 MB101644565.217%

문제

Recently, there has been a breach of user information from the mega-popular social network Secret Network. Among the confidential information are the passwords of all users.

Mihael, a young student who has been exploring computer security lately, found the whole thing really interesting. While experimenting with the social network, he found another security breach! When you input any string of characters that contains a substring equal to the actual password, the login will be successful. For example, if the user whose password is abc inputs one of the strings abc, abcd or imaabcnema, the system will successfully log him in, whereas the login will fail for axbc.

Mihael wants to know how many ordered pairs of different users exist such that the first user, using their own password, can login as the second user.

입력

The first line of input contains the positive integer N (1 ≤ N ≤ 20 000), the number of users. Each of the following N lines contains the user passwords. The passwords consist of at least one and at most 10 lowercase letters of the English alphabet.

출력

The first and only line of output must contains the number of ordered pairs from the task.

예제 입력 1

3
aaa
aa
abb

예제 출력 1

1

예제 입력 2

3
x
x
xy

예제 출력 2

4

예제 입력 3

5
mir
mirta
ta
ir
t

예제 출력 3

6

힌트

Clarification​ ​of​ ​the​ ​second​ ​test​ ​case:

The first user can login as the second user, the second user can login as the first, and the third user can login as both the first and the second user.