使用正则表达式

import re
s = input()
word = re.search(r' ?(\w+)$', s.strip()).group(1)
print(len(word))