import java.util.Scanner; public class Main{ static int f(int x){ if(x==1) return 0; for(int i=1;;i++){ if(Math.pow(2, i)>=x){ return i; } } } public static void main(String[] args){ Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int n=sc.nextInt(); System.out.println(f(n)); } } }