#include<bits/stdc++.h> using namespace std; int main(){ int s,x; cin>>x; for(int i=0;;i++){ s++; x=x/100*98; if(x>s) break;} cout<<s; return 0; }