#include using namespace std; int main() { int a,b=0; cin >> a; for (int i = a; a > 0; a--) { b += a; } cout << b << endl; return 0; }