#coding : utf-8 x = int(input().rstrip()) ans = 0 for i in range(1,x+1): ans += i print(ans) #