import java.io.*; import java.util.*; /*yukicoder No.3 ビットすごろく*/ class No3{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); //ゴールまでのマスnを入力 int n = scan.nextInt(); int[] log = new int[n]; int here = 1; //今のマスの位置 int move = 0; //移動する数(マス) int count = 1; //移動した回数 while(n!=here){ count += 1; move = Integer.bitCount(here);//今のマス数を2進数にしたときの1の数 if(n