#include<iostream> using namespace std; int main() { double x,a=0,b=2; int c=0; cin>>x; while(a<x) { a=a+b; b=b*0.98; c++; } cout<<c; return 0; }