# 下の段x、上の段N-x # あらわせる数 (x+1) * (N-x) + x N = int(input()) ans = 0 for x in range(1,N+1): t = (x+1) * (N-x) + x ans = max(ans,t) print(ans)