#include<bits/stdc++.h> using namespace std; int main(){ int s=0,N; cin>>N; for(int i=1;i<=N;++i) s+=i; cout<<s; return 0; }