# 严谨一点去掉头尾空格再分割字符串
# (其实没必要题目有写字符串末尾不以空格为结尾)
str1=input().strip().split()
str1=str1[-1]
print(len(str1))