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