试题 算法训练 最长字符串

资源限制
时间限制:1.0s 内存限制:512.0MB
  求出5个字符串中最长的字符串。每个字符串长度在100以内,且全为小写字母。
样例输入
one two three four five
样例输出
three

"""
@Author:Lixiang

@Blog(个人博客地址): https://lixiang007.top/

@WeChat:18845312866

"""
import math
import string
import sys
str=input()
list=str.split(" &#