- Time limit: 1.00 s
- Memory limit: 512 MB
Input
The only input line has a string of length $n$ that consists of characters a–z.
Output
Print one integer: the number of substrings.
Constraints
- $1 \le n \le 10^5$
Input:
abaa
Output:
8
Explanation: the substrings are
a
, b
, aa
, ab
, ba
, aba
, baa
and abaa
.