def add(a,b): b=b+a if a!=0: add(a-1,b) else: print(b) a=int(input()) b=0 add(a,b)