#29814: python 簡單的解答


422596@st.tc.edu.tw (殤)


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