import math n=int(input()) d=math.sqrt(n) ans=0 while d>0: ans+=1 d//=10 print(ans)