#include using namespace std; void solve() { unsigned long long N; cin >> N; cout << pow(N/2,2) << endl; } int main() { ios::sync_with_stdio(false); cin.tie(0); solve(); getchar(); }