N = int(input()) cnt = 0 for x in range(N + 1): for y in range(N + 1): z = N - x - y if z >= 0: cnt += 1 print(cnt)