#include <iostream>

int main(void)
{
	int n;
	std::cin >> n ;
	std::cout << ((n*(n + 1)) >> 1) << std::endl;
	return 0;
}