using System; using System.Linq; namespace yukicoder { class pg { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int ans = 0; int i = 0; while(Math.Pow(2,i) < n) { i++; } Console.WriteLine(i); } } }