fun f (x) =
    if x =? 0 then 1
    else g (x - 1)
    fi
and g (x) =
    if x =? 0 then 0
    else f (x - 1)
    fi

val main = print_int (f (20))