s = input()
try:
    idx = s.rindex(' ')
    print(len(s)-idx-1)
except:
    print(len(s))