n=int(input()) ok=0 ng=10**10 while ng-ok>1: m=(ok+ng)//2 if m*m<=N: ok=m else: ng=m print(m)