#include<stdio.h> #include<math.h> int main(void) { int x; int ret=0; scanf("%d",&x); int t=x; while(x>1) { x=x/2; ret++; } printf("log2 of %d is %d",t,ret); return 0; }