N = int(input()) c = 0 for x in range(N+1): for y in range(N-x+1): c += 1 print(c)