txt = input()
c = txt.split()
v = []
for i in c:
v.append(len(i))
g = v.index(max(v))
print (c[g])
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
txt = input()
c = txt.split()
v = []
for i in c:
v.append(len(i))
g = v.index(max(v))
print (c[g])