#include using namespace std; int x, rez; int main() { cin >> x; while(x) { rez++; x = x / 2; } cout << rez; }