Pero has negotiated a Very Good data plan with his internet provider. The provider will let Pero use up
megabytes to surf the internet per month. Each megabyte that he doesn't spend in that month gets transferred to the next month and can still be spent. Of course, Pero can only spend the megabytes he actually has.
If we know how many megabytes Pero has spent in each of the first
months of using the plan, determine how many megabytes Pero will have available in the
month of using the plan.
Input Specification
The first line of input contains the integer
.
The second line of input contains the integer
.
Each of the following
lines contains an integer
, the number of megabytes spent in each of the first
months of using the plan. Numbers
will be such that Pero will never use more megabytes than he actually has.
Output Specification
The first and only line of output must contain the required value from the task.
Sample Input 1
Copy
10
3
4
6
2
Sample Output 1
Copy
28
Explanation for Sample Output 1
In the first month, out of
total megabytes, Pero has spent
and transferred
into the next month. In the second month, out of
total megabytes, Pero has spent
and transferred
. In the third month, out of
total megabytes, Pero has spent
and transferred
. In the fourth month, he had a total of
megabytes to spend.
Sample Input 2
Copy
10
3
10
2
12
Sample Output 2
Copy
16
Sample Input 3
Copy
15
3
15
10
20
Sample Output 3
Copy
15
Comments
Why the second sample output 16 instead of 6?
We are looking for how many megabytes he will have available during month N+1, not just how many megabytes are unused and will be transferred.
I wish this was me in real life...