#include using namespace std; int main(void){ int d; cin >> d; cout << d / 4 * (d - d / 4) << endl; return 0; }