#include <iostream> #include <math.h> using namespace std; int main(){ double h,v,t; cin>>h; t=sqrt(h/4.9); v=9.8*t; cout<<v; system("pause"); return 0; }