using System;
public class Program
{
public static void Main()
//tìm số nguyên dương k nhỏ nhất sao cho 2^k > n vs n là 1 số nguyên dương từ bàn phím
Console.Write("nhap so nguyen duong n: ");//5
int n=Convert.ToInt32(Console.ReadLine());
int k=1;
while(true)
int x=2;
for(int i=1; i<=k; i++)
x*=x;
if(x<n)
k++;
else if(x>n)
Console.WriteLine(k);
break;
}
else
Console.ReadLine();