import math N=int(input()) p=int(math.sqrt(N)+1-10**(-7)) while N//p!=N//(p+1): p+=1 print(p+N//p-1)