100 atcoder#ABC043A. [ABC043A] キャンディーとN人の子供イージー

[ABC043A] キャンディーとN人の子供イージー

Score : 100100 points

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 \leq N \leq 100

Input

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

NN

Output

Print the necessary number of candies in total.

3
6

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

10
55

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

1
1

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