Write a program with a loop that asks the user to enter a series of positive numbers. The user should enter a negative number to signal the end of the series. After all the positive numbers have been entered, the program should display their sum. Note: Don’t include the negative number in the sum. Pay attention on the fact that, as a programmer you have no idea how many positive numbers user is going to enter. Pick your loop wisely. Design your code your way!!