Problem B - Numerically Speaking -------------------------------- A developer of crossword puzzles (and other similar word games) has decided to develop a mapping between every possible word with from one to eleven characters and unique integers. The mapping is very simple, with the ordering being done first by the length of the word, and then alphabetically. Part of the list is shown below. a 1 b 2 ... z 26 aa 27 ab 28 ... snowfall 157118051752 ... Your job in this problem is to develop a program which can translate, words to the corresponding numbers. Input ----- Each line of input will contain exactly one word of up to 11 characters. The last line of input will contain a single asterisk in column one. Output ------ For each line of input, output the corresponding number, one number at a line. No output should be created for the last line of input (the one containing the asterisk). Sample Input ------------ a z snowfall elementary * Output for Sample Input ----------------------- 1 26 157118051752 29697684282993