시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB111100.000%

문제

Misha didn't do his math homework for today's lesson once again. As a punishment, his teacher Dr. Andrew decided to give him a hard, but very useless task.

Dr. Andrew has written two strings $s$ and $t$ of lowercase English letters at the blackboard. He reminded Misha that prefix of a string is a string formed by removing several (possibly none) of its last characters, and a concatenation of two strings is a string formed by appending the second string to the right of the first string.

The teacher asked Misha to write down on the blackboard all strings that are the concatenations of some non-empty prefix of $s$ and some non-empty prefix of $t$. When Misha did it, Dr. Andrew asked him how many distinct strings are there. Misha spent almost the entire lesson doing that and completed the task. 

Now he asks you to write a program that would do this task automatically.

입력

The first line contains the string $s$ consisting of lowercase English letters. The second line contains the string $t$ consisting of lowercase English letters.

The lengths of both string do not exceed $10^5$.

출력

Output a single integer --- the number of distinct strings that are concatenations of some non-empty prefix of $s$ with some non-empty prefix of $t$.

예제 입력 1

aba
aa

예제 출력 1

5

예제 입력 2

aaaaa
aaaa

예제 출력 2

8

힌트

In the first example, the string $s$ has three non-empty prefixes: {a, ab, aba}. The string $t$ has two non-empty prefixes: {a, aa}. In total, Misha has written five distinct strings: {aa, aaa, aba, abaa, abaaa}. The string abaa has been written twice.

In the second example, Misha has written eight distinct strings: {aa, aaa, aaaa, aaaaa, aaaaaa, aaaaaaa, aaaaaaaa, aaaaaaaaa}.