let n = process.argv[2] let a = 1 let c = 0 while(a < n){ a *= 2 c += 1 } console.log(c)