#include <iostream> #include <cstdio> using namespace std; int main() { double g,m=0,s=0,r=1; cin >> g; while(m<g) { m+=2*r; r*=0.98; } cout << s; return 0; }