Insert prints into the following loop to see what the values of k and sum are each time the loop enters its body. Be sure to identify who is talking, and what it is showing. Do not show raw numbers.
  Let sum = 0.
  Let k = 0.
  While k <= 10 do
    Relet k = k + 1.
    Relet sum = sum + k.
  %While

 

    [Language: Cinnameg  Kind: statements]