#include<bits/stdc++.h> using namespace std; int main() { float a; cin>>a; float s=(a*a)/4.0; cout<<fixed<<setprecision(2)<<s; return 0; }