#include using namespace std; int main(){ int d; cin >> d; if(d < 4) cout << 0 << endl; else cout << (d / 4) * (d / 4 + d % 4 / 2) << endl; }