#abc043a. [abc043_a]Children and Candies (ABC Edit)

[abc043_a]Children and Candies (ABC Edit)

Problem Statement

There are NN children in AtCoder Kindergarten. Mr. Evi will arrange the children in a line, then give 11 candy to the first child in the line, 22 candies to the second child, ..., NN candies to the NN-th child. How many candies will be necessary in total?

Constraints

  • 1N1001≦N≦100

Input

The input is given from Standard Input in the following format:

NN

Output

Print the necessary number of candies in total.


Sample Input 1

3

Sample Output 1

6

The answer is 1+2+3=61+2+3=6.


Sample Input 2

10

Sample Output 2

55

The sum of the integers from 11 to 1010 is 5555.


Sample Input 3

1

Sample Output 3

1

Only one child. The answer is 11 in this case.