What is wrong with the following attempt at a contract. The function definition is given.
  %% sqr(x) yields the square of x.  It works by multiplying
  %% x by itself.

  Define
    sqr(x) = x*x
  %Define