#include int main(void){ int i, L; long long ans = 0; scanf("%d", &L); for(i=L-2;i>0;i-=2){ ans+=i; } printf("%lld\n", ans); return 0; }