import std.stdio; import std.conv, std.array, std.algorithm, std.string; import std.math, std.random, std.range, std.datetime; import std.bigint; void main(){ long n = readln.chomp.to!long; int ans = 0; bool flag = 0; long m = 1; while(m <= n){ if(m * 2 <= n) m *= 2; else break; ans += 1; } if(m < n) ans += 1; ans.writeln; }