1282 - 最长字符串

通过次数

155

提交次数

275

Time Limit : 1 秒
Memory Limit : 512 MB

求出5个字符串中最长的字符串。每个字符串长度在100以内。

Input

输入一行5个字符串,表示需要比较的5个字符串,字符串之间使用空格隔开。

Output

输出一行一个字符串,表示最长的字符串。

Examples

Input

one two three four five

Output

three

Source

蓝桥杯