The name score is the sum of the scores of every uppercase letter in a name. The score table follows alphabetical order, that is, A=1,B=2,C=3,…,Z=26.
For a name SUNGPIL, the score is S(19)+U(21)+N(14)+G(7)+P(16)+I(9)+L(12)=98. For a name SOYOON, the score is S(19)+O(15)+Y(25)+O(15)+O(15)+N(14)=103.
Given a name, write a program that computes its name score.