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