#include int main(void){ double sum,t; int step; scanf("%lf",&sum); for(step=0,t=2;sum>0;step++) { sum-=t; t*=0.98; } printf("%d\n",step); return 0;}