#include void solve() { int d; std::cin >> d; if (d % 2 != 0) --d; d /= 2; std::cout << (d / 2) * (d - d / 2) << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }