#include int main(void){ int a,b; scanf("%d\n",&a); for(int i=1;i<=a;++i) { b+=i; } printf("%d\n",b); return 0; }