code python algorithm
9
words = input().split() best = 0 for word in words: if len(word) > best: best = len(word) print(best)