s1 = input() s2 = input() res = [] maxlen = 0 if len(s1) > len(s2): s1,s2 = s2,s1 for i in range(len(s1)): for j in range(len(s1)-i): &n...