sum = 0 for x in range(int(input())): sum += x+1 print(sum)