import java.util.Scanner; public class No47 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); // 食べたいビスケットの枚数 int x = 0; // ポケットを叩く回数 int sum = 1; //持っているビスケットの枚数 while((sum * 2) < N) { x++; sum *= 2; } if(N == sum) { }else if(N - sum == 1 || N % 2 == 0) { x++; }else { x += 2; } System.out.println(x); } }