int firstBig(int i)
{
  if(i == 0) return 0;
  else if(i > 100) return i;
  else return firstBig(next(i));
}