#include <bits/stdc++.h> using namespace std; int main() { int n,S; cin>>n; S=(1+n)*n/2; cout<<S<<endl; return 0; }