#include using namespace std; int main(){ int d;cin >> d; d/=2; cout << (d%2 ? (d/2*(d/2+1)) : d * d / 4) << endl; }