print("Enter the first word:")
s1 = input()
print("Enter the second word:")
s2 = input()
s1 = s1.upper()
s2 = s2.upper()
print(s1 if s1 < s2 else s2)
print(s2 if s1 < s2 else s1)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment