#include int main() { int N; std::cin >> N; int answer = N * ( N + 1 ) /2; std::cout << answer << std::endl; return 0; }