Using the statement approach, write a function smallest(x, y, z) that produces the smallest of thre integers. Include Define ... %Define around it. (Hint. First guess that the answer is x. Then update your guess to y if y is smaller than the current guess. Then update your guess to z if z is smaller than the current guess.)

 

    [Language: Cinnameg  Kind: program]