#include using namespace std; int main(){ int n; cin>>n; int t=0; int s=1; while(n>1){ t++; s*=2; if(s>=n)break; } cout<