#include using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) long long solve(int n) { long long ret = 0; for (int i = 0; i < (n + 1) / 2; i++) { long long x = i + 1; long long y = n + 1 - i; long long z = n - 1 - i; if (i == 0) --y; if (i + 1 == (n + 1) / 2) ++ z; if (x < y) ret += x * y; if (x < z) ret += x * z; } return ret; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; cout << solve(n) << endl; return 0; }