#include<iostream>
using namespace std;
int main()
  int n;
  cin>>n;
  int a= (n*(n+1))/2;
  cout<<a<<endl;
  return 0;
}