#include #include using namespace std; int main(){ int n; cin>>n; int x; x=0; while(1){ int y; y=pow(2,x); if(y>=n){ break; } else { x++; } } cout<