import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String input = in.nextLine();
        // 字符串根据空格分隔为数组
        String[] words = input.split(" ");
        // 获取最后一个元素的长度
        int length = words[words.length - 1].length();
        System.out.println(length);
    }
}

s = input()

res = s.split(" ")
l = len(res)
print(len(res[l - 1]))