#include<bits/stdc++.h> using namespace std; int main(){ int x,n=0; double c=0,d=2; cin>>x; while(c<x){ c+=d; d*=0.98; n++; } cout<<n; return 0; }