#include using namespace std; int main() { int a, bit=0; cin>>a; while(a!=0) { ++bit; a/=2; } return 0; }