#include <iostream>
using namespace std;
int main()
{ long long int n,l;
while(cin>>n) { l=n/2; cout << (l/2)*((l/2)+l%2)<< endl; } return 0;}