#include using namespace std; int main() { int n, c = 0; cin >> n; for (int i = 3; i <= n; i+=2) c++; printf("%.0f\n", pow(c, 2)); return 0; }