#include using namespace std; typedef long long ll; int main() { ll L; cin >> L; ll N = L / 2; cout << N * N << endl; return 0; }