fork download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main() {
  6. int n;
  7.  
  8. cin >> n;
  9.  
  10. cout << ceil(log2(n));
  11.  
  12. }
Success #stdin #stdout 0.01s 5284KB
stdin
1
stdout
Standard output is empty