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