#include int add( int n){if( n ==1)return 1;elsereturn n + add(n-1) ;}int main(){int n;scanf("%d",&n);printf("%d",add(n));return 0;}