SDE Path

Prefix Sum Array

Easy

Prefix Sum Array

Build the running total of an array.

Input format

The first line contains N. The second line contains N space-separated integers.

Output format

Print the resulting array as space-separated integers on one line. Element i is the sum of the first i + 1 input values (a running total).

Constraints

  • Values fit in a 64-bit signed integer
  • Trailing whitespace and a trailing newline are ignored by the judge

Read from stdin, write to stdout. Sample cases below show the exact format.

Sample cases

Example 1
Input
5
3 1 4 1 5
Expected output
3 4 8 9 14
Example 2
Input
4
10 20 30 40
Expected output
10 30 60 100