You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
232 B
C++

#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
scanf("%d", &n);
long long ans = 0;
for (int id = 2; id < n; id++)
ans += id * (id + 1ll);
printf("%lld", ans);
return 0;
}