Given a list of integers, return a new list where each element in the new list is the sum of itself and all previous elements in the original list.
[3, 7, 1, 2]
[3, 10, 11, 13]
Bot