import java.util.Scanner; public class Question47 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); float fN = (float)N; int count = 0; do { fN /= 2; count++; } while (fN > 1); System.out.println(count); } }