let n = Int(readLine()!)! import Foundation var a = Int(sqrt(Double(n))) if a*a > n{ a -= 1 } print(a)