#include<iostream>

int main()
{
	int N;
	std::cin >> N;

	std::cout << N * (1 + N) / 2;

	return 0;
}