run();;
% cintvsdntcex6.mini %
let
  f(n) = if (n = 0) then 0
         else f(f(0)) fi;
in
  f(100);;

