This question requires some thought about how a while-loop works. Suppose you see the following program fragment, with part of it hidden from view (as some dots).
  Let k = 1.
  While k =/= 10 do
    ...
  %While
  Displayln k.
When you run this, a value is displayed. Without seeing the body of the loop, can you say what was displayed?