N = input() list = [] for x in range(int(N)): a = x + 1 list.append(a) print(sum(list))