from math import isqrt n=int(input()) s=isqrt(n) if n//s==s: print(s*2-1) else: print(s*2)