fork download
  1. #include <stdio.h>
  2. void func(int m,int n){
  3. int c=0;
  4. while(n>=2*m){
  5. if(n%2)
  6. --n;
  7. else
  8. n/=2;
  9. ++c;
  10. }
  11. printf("%d\n",c+n-m);
  12. }
  13. int main(void) {
  14. func(3,10);
  15. func(3,95);
  16. func(666,2014);
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
3
10
342