#include using namespace std; using ll=long long; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); string S; cin>>S; vector cnt(26,0ll); ll ans=0; for(auto i:S){ i-='A'; for(int j=0;j<26;j++){ if(j==i)continue; ans+=cnt[j]*(cnt[j]-1)/2; } cnt[i]+=1; } cout<