#include<iostream>
using namespace std;

int main()
{
int n;
int sz=0;
cin>>n;
do
{
sz++;
n=n/2;
}while(n);
}