// Description
Output the sum 1 + 2 + ... + n.
// Input
A single integer n (1 <= n <= 10^9).
// Output
The value of n(n+1)/2.
// Hint
Use the closed-form formula; mind 64-bit overflow.