#include <stdio.h>
void fun(int n)
{
if (n == 0)
return;
fun(n/2);
}
int main(void) {
fun(25);
return 0;
}
I2luY2x1ZGUgPHN0ZGlvLmg+Cgp2b2lkIGZ1bihpbnQgbikKewogIGlmIChuID09IDApCiAgICByZXR1cm47CgogIHByaW50ZigiJWQiLCBuJTIpOwogIGZ1bihuLzIpOwp9ICAKCmludCBtYWluKHZvaWQpIHsKCWZ1bigyNSk7CglyZXR1cm4gMDsKfQo=