N = int(input()) ans = 0 for x in range(1, N+1): if x%3==1: ans += x elif x%3==2: ans += x*x else: ans += x*x*x print(ans)