#include using namespace std; int main() { int n, c = 0; cin >> n; for (int i = 3; i <= n; i+=2) c++; cout << pow(c, 2) << endl; return 0; }