#20分defmain():
s=float(input())
s=round(s,1)
count,l=0,2if0<=s<=100:
while l<=s:
l*=1.98
count+=1print(count+1)
if __name__=="__main__":
main()
#答案题解C++转换成python:100分# ans = 0 # x = float(input()) # s = 2 # 小玉第一次的游泳距离# d = 0 # 她游过的距离# while d < x: # 循环条件是游过的距离小于输入的距离# d += s # 每次加上她游一次的距离# s = s * 0.98 # ans += 1 # 游泳次数每次增加一# print(ans)