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