#include main(){ int N; scanf("%d",&N); int L = N/4; int max = L*L; if(N-L*4>=2){ max += L; } printf("%d\n",max); }