题解 | #游戏海报#
游戏海报
http://www.nowcoder.com/practice/6a6a0e4d6dfa4d89acd73bdfec79cf28
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int len = sc.next().length();
System.out.println(25 * len + 26);
}
}