given a list from greatest to least with positive and negative numbers add only the negative numbers using for loop
given_list = [7, 5, 4, 4, 3, 1, -2, -3, -5, -7]
total = 0
for element in given_list2:
if element < 0:
total += element
print(total)