#include int main(){ double a = 50; int n, i; scanf("%d", &n); for(i = 0; ; i ++) { a*=1.011; if(a>=n) break; } printf("%d\n", i+1998); return 0;}