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