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