#include int main(void) { int N; std::cin >> N; if (!std::cin.fail()) { std::cout << (int)((float)((1 + N) * N) / 2); } return 0; }