def larger_sum(lst1, lst2): new_list = [] for i in range(len(lst1)): for e in range(len(lst2)): if lst1[i]>lst2[i]: new_list.append(lst1[i])