• + 0 comments

    a,b1=keyboards,drives s=[] for i in range(len(a)): for j in range(len(b1)): if a[i]+b1[j]<=b: s.append(a[i]+b1[j]) if len(s)>1: return max(s) else: return -1