from sys import stdin def main(): input = lambda: stdin.readline()[:-1] N = int(input()) n = str(int(N ** 0.5)) print(len(n)) main()