#include using namespace std; int n; int main() { cin>>n; if(n==0) { cout<<1; return 0; } int sol=0; while(n) { n/=2; sol++; } cout<