#include<bits/stdc++.h>
using namespace std;
int n,s=1,h;
int main(){
	cin>>n;
    while(n>=s){
    	h=h+s;
    	s=s+1;
    }
    cout<<h;
}
/**************************************************************
	Problem: 1002
	User: chenyichuen
	Language: C++
	Result: Accepted
	Time:17 ms
	Memory:2072 kb
****************************************************************/