#include using namespace std; int main(){ long long L,ans; cin >> L; ans=(L-2+1)/2*(L/2); cout << ans << endl; return 0; }