b=[1]
for a in range(499):
b.append(b[a]+a+1)
while True:
try:
c=int(input())
print(b[c-1])
except EOFError:
break