import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
// 注意 hasNext 和 hasNextLine 的区别
while (in.hasNextLine()) { // 注意 while 处理多个 case
String line = in.nextLine();
int lastBlank = line.lastIndexOf(" ");
//lastIndexOf(" ") 方法用于查找字符串 line 中最后一个空格字符的位置,并返回其索引。如果字符串中没有空格字符,返回 -1
String lastWord = line.substring(lastBlank+1);
//substring(int beginIndex) 方法用于从字符串 line 中提取从 beginIndex 位置开始到字符串末尾的子字符串。lastBlank + 1 是提取最后一个单词的起始位置。如果 lastBlank 是 -1,表示字符串中没有空格,lastBlank + 1 将是 0,这意味着从字符串的开始位置提取整个字符串。String lastWord 是一个字符串变量,用于存储提取的最后一个单词
System.out.println(lastWord.length());
}
}
}