#include<iostream>
using namespace std;
char st[1000];

 

int main()
{
    while(cin.getline(st,990) && st[0]!='#')
    {
        int len=strlen(st);
        int i;
        long sum=0;
        for(i=0;i<len;i++)
            if(st[i]!=' ')
                sum+=(st[i]-'A'+1)*(i+1);

        cout<<sum<<endl;
    }


    return 0;
}

 

posted on 2010-05-12 13:11  VRS  阅读(206)  评论(0编辑  收藏  举报