#include using namespace std; int main(int argc, const char* argv[]) { int L; cin >> L; uint64_t tmp = L / 2; cout << tmp * tmp << endl; return 0; }