x = int(input()) list1 = [] for i in range(1,x+1): list1.append(i) print(sum(list1))