#include #define rep(i,n) for(int i=0;i> n; int cnt = 0; while((1 << cnt) < n) cnt++; cout << cnt << endl; return 0; }