using System; class No47{ static void Main(){ var count=Int32.Parse(Console.ReadLine()); Console.WriteLine((Math.Floor(Math.Sqrt(count)))+1); } }