#include <bits/stdc++.h>
#define bug cout << "***************" << endl
#define fuck(x) cout << #x << " -> " << x << endl
#define endl '\n'
#define int long long
using namespace std;
constexpr int N = 1e6 + 10, inf = 0x3f3f3f3f;
int pre[N]; // pre[i]代表第i个字母上一次出现的位置(从1开始)
int ne[N]; // nest[i]代表第i个字母下一次出现的位置(从1开始)
int h[30]; // h[i]代表a-z字母出现的下标(下标从1开始),默认h[i]的数值为0
void solve()
{
char s[N];
cin >> s + 1;
int len = strlen(s + 1); // 读取字符串长度
for (int i = 1; i <= len; i++)
{
int t = s[i] - 'a';
pre[i] = h[t]; // 这个下标的上一个出现的位置;
h[t] = i; // 记录当前字母出现的下表w位置;
}
for (int i = 0; i < 26; i++)
{
h[i] = len + 1;
}
// 逆序遍历:
for (int i = len; i >= 1; i--)
{
int t = s[i] - 'a'; // a表示的是0
ne[i] = h[t];
h[t] = i;
}
int sum = 0;
for (int i = 1; i <= len; i++)
{
sum += abs(i - pre[i]) * abs(i - ne[i]);
}
cout << sum << endl;
}
signed main()
{
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int T = 1;
while (T--)
{
solve();
}
return 0;
}