using System; public class Hello{ public static void Main(){ int n = int.Parse(Console.ReadLine()); int b=1, c=0; while(true){ if(b>=n)break; b*=2; c++; } Console.WriteLine(c); } }