#include int main() { int a; int b=0; std::cin >> a; while(a) { b += a; a--; } std::cout << b; }