N = int(input()) ans=0 while N>0: ans=ans+N N=N-1 print(ans)