N = input() champ = -1 for n in xrange(1, N+1): p = (n+1) * (N-n) + n champ = max(champ, p) print champ