Drop links or images here to add them to the editor.

Sum up to N ⭐⭐

Read an integer N and compute the sum 1 + 2 + ... + N using an accumulator.

Input

One integer:

  1. N

Output

Print a single number: the sum from 1 to N.

Example

Input:

5

Output:

15