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