#include #include typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(2); ll d; std::cin >> d; d/=2; std::cout << (d+1)/2*(d/2) << std::endl; return 0; }