#include<bits/stdc++.h>
using namespace std;
int main(){
	int n;
	cin>>n;
	float a;
	a=n*1.00/4;
	float s;
	s=a*a;
    printf("%.2f",s);

	return 0;
}

/**************************************************************
	Problem: 1420
	User: zhuanghaoxiang
	Language: C++
	Result: Accepted
	Time:9 ms
	Memory:2072 kb
****************************************************************/